- Timestamp:
- Dec 24, 2013, 6:56:50 PM (11 years ago)
- Branches:
- master
- Children:
- 4284008
- Parents:
- bf02a60
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cmd.c
rbf02a60 r9195a6a 28 28 extern int creategroups; 29 29 30 void icb_cmd_help(struct icb_session *, char *); 30 31 void icb_cmd_beep(struct icb_session *, char *); 31 32 void icb_cmd_boot(struct icb_session *, char *); … … 45 46 void (*handler)(struct icb_session *, char *); 46 47 } cmdtab[] = { 48 { "?", icb_cmd_help }, 47 49 { "beep", icb_cmd_beep }, 48 50 { "boot", icb_cmd_boot }, … … 66 68 67 69 void 70 icb_cmd_help(struct icb_session *is, char *arg __attribute__((unused))) 71 { 72 icb_status(is, STATUS_HELP, "Server supports following commands:"); 73 icb_status(is, STATUS_HELP, "beep boot g m name nobeep pass topic"); 74 } 75 76 void 68 77 icb_cmd_beep(struct icb_session *is, char *arg) 69 78 {
Note:
See TracChangeset
for help on using the changeset viewer.