blob: 2a91bb3bf9b60d751bcbb829404214404089f6d4 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Directive access code</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<? prevnext "<h1>Directive access code</h1>" ?>
The command_rec structure links Directive names with the C
functions that handle them:
<pre>
<span class="keyword">const</span> command_rec <span class="variable-name">rivet_cmds</span>[] =
{
{<span class="string">&quot;RivetServerConf&quot;</span>, Rivet_ServerConf, NULL, RSRC_CONF, TAKE2,
NULL},
{<span class="string">&quot;RivetDirConf&quot;</span>, Rivet_DirConf, NULL, ACCESS_CONF, TAKE2, NULL},
{<span class="string">&quot;RivetUserConf&quot;</span>, Rivet_UserConf, NULL,
ACCESS_CONF|OR_FILEINFO, TAKE2,
<span class="string">&quot;RivetUserConf key value: sets RivetUserConf(key) = value&quot;</span>},
{NULL}
};
</pre>
<?footer?>
</body>
</html>