summaryrefslogtreecommitdiff
path: root/server/zserver.h
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1987-07-16 12:51:40 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1987-07-16 12:51:40 +0000
commitfee499088c6c7d8d05fc8f0871c346fd33a51e72 (patch)
treee9623a13df8ec2774d5c124f3dc4167ebca1d426 /server/zserver.h
parent097c4e2f30739fa023d97b94eb10a0c506d0191f (diff)
add KILL_CLT; change external defn's to Code_t's
Diffstat (limited to 'server/zserver.h')
-rw-r--r--server/zserver.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/zserver.h b/server/zserver.h
index b15e770..eda0307 100644
--- a/server/zserver.h
+++ b/server/zserver.h
@@ -161,19 +161,18 @@ extern void hostm_transfer();
/* found in server_s.c */
extern void server_timo(), server_dispatch(), server_recover();
extern void server_adispatch(), server_init(), server_shutdown();
-extern void server_forward();
+extern void server_forward(), server_kill_clt();
extern int is_server();
extern ZServerDesc_t *server_which_server();
/* found in subscr_s.c */
-extern Code_t subscr_cancel(), subscr_subscribe();
+extern Code_t subscr_cancel(), subscr_subscribe(), subscr_send_subs();;
extern ZClientList_t *subscr_match_list();
extern void subscr_list_free(), subscr_cancel_client(), subscr_sendlist();
-extern void subscr_send_subs();
/* found in uloc_s.c */
extern void ulogin_dispatch(), ulocate_dispatch(), uloc_hflush();
-extern void uloc_send_locations();
+extern Code_t uloc_send_locations();
/* found in zctl.c */
extern void control_dispatch();
@@ -238,6 +237,7 @@ extern char *pktypes[]; /* names of the packet types */
is complete */
#define ADMIN_NEWCLT "NEXT_CLIENT" /* Opcode: this is a new client */
#define ADMIN_LOST_CLT "LOST_CLIENT" /* Opcode: client not ack'ing */
+#define ADMIN_KILL_CLT "KILL_CLIENT" /* Opcode: client is dead, remove */
#define ADMIN_LIMBO "LIMBO" /* Class inst: please send limbo info*/
#define ADMIN_YOU "YOUR_STATE" /* Class inst: please send your state*/