diff options
Diffstat (limited to 'src/ngircd/parse.h')
| -rw-r--r-- | src/ngircd/parse.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ngircd/parse.h b/src/ngircd/parse.h index 0c6f8a66..beac2275 100644 --- a/src/ngircd/parse.h +++ b/src/ngircd/parse.h @@ -35,6 +35,8 @@ typedef struct _COMMAND bool (*function) PARAMS(( CLIENT *Client, REQUEST *Request )); /**< Function to handle this command */ CLIENT_TYPE type; /**< Valid client types (bit mask) */ + int min_argc; /**< Min parameters */ + int max_argc; /**< Max parameters */ long lcount, rcount; /**< Number of local and remote calls */ long bytes; /**< Number of bytes created */ } COMMAND; |