3 #include "serv_extensions.h"
5 /* Simple linked list structures ... used in a bunch of different places. */
7 struct RoomProcList
*next
;
8 char name
[ROOMNAMELEN
];
11 struct UserProcList
*next
;
15 void cit_backtrace(void);
16 void cit_panic_backtrace(int SigNum
);
17 void master_startup (void);
18 void master_cleanup (int exitcode
);
19 void RemoveContext (struct CitContext
*);
20 void set_wtmpsupp (char *newtext
);
21 void set_wtmpsupp_to_current_room(void);
24 void cmd_iden (char *argbuf
);
25 void cmd_mesg (char *mname
);
26 void cmd_emsg (char *mname
);
27 void cmd_term (char *cmdbuf
);
29 void cmd_echo (char *etext
);
30 void cmd_ipgm (char *argbuf
);
31 void cmd_down (char *argbuf
);
33 void cmd_scdn (char *argbuf
);
34 void cmd_extn (char *argbuf
);
35 void do_command_loop(void);
36 void do_async_loop(void);
37 void begin_session(struct CitContext
*con
);
38 void citproto_begin_session(void);
39 void GenerateRoomDisplay(char *real_room
,
40 struct CitContext
*viewed
,
41 struct CitContext
*viewer
);
43 char CtdlCheckExpress(void);
45 int CtdlAccessCheck(int);
47 /* 'required access level' values which may be passed to CtdlAccessCheck()
59 extern time_t server_startup_time
;