diff options
Diffstat (limited to 'src/command.h')
-rw-r--r-- | src/command.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/command.h b/src/command.h index 247bce573..68d6f4a36 100644 --- a/src/command.h +++ b/src/command.h @@ -31,8 +31,10 @@ #define COMMAND_RESPOND_ERROR "ACK" #define COMMAND_RESPOND_OK "OK" -int processCommand(FILE * fp, unsigned int * permission, int argArrayLength, - char ** argArray, ListNode * commandNode); +int proccessListOfCommands(FILE * fp, int * permission, int * expired, + List * list); + +int processCommand(FILE * fp, unsigned int * permission, char * commandString); void initCommands(); |