#include "services.h"
#include "operserv.h"
#include "log.h"
#include "interp.h"
Go to the source code of this file.
Namespaces | |
namespace | interp |
Defines | |
#define | TBL(ccname) { ccname, #ccname } |
Enter an event log constant into the command table. | |
#define | TF(ccname, fname) { ccname, #ccname, fname } |
Enter a log constant bound to a command function into the command table. |
This module implements dispatch-table parsing of all services commands rather than a nasty maze of strcasecmps or discrete dispatch table implementations per service; this module provides for a unified interface that can be used to parse nearly any command for any service.
Definition in file interp.cc.