control.c revision 1b4e6163bed546ca7f8ad186f3eabfebacc36bc1
#include <config.h>
#include <string.h>
static isc_boolean_t
return (ISC_TRUE);
return (ISC_FALSE);
}
/*
* This is the function that is called to process an incoming command when a
* message's object value list or something.
*/
char *command;
/*
* No data section.
*/
return (ISC_R_FAILURE);
}
if (result != ISC_R_SUCCESS) {
/*
* We have no idea what this is.
*/
return (result);
}
"received control channel command '%s'",
command);
/*
* Compare the 'command' parameter against all known control commands.
*/
"unimplemented channel command '%s'",
command);
ns_g_debuglevel = 0;
} else {
"unknown control channel command '%s'",
command);
}
return (result);
}