summaryrefslogtreecommitdiff
path: root/server/zserver.h
diff options
context:
space:
mode:
authorGravatar Jeffrey Hutzelman <jhutz@cmu.edu>2013-02-23 03:34:06 -0500
committerGravatar Karl Ramm <kcr@1ts.org>2013-02-26 23:01:10 -0500
commit0fb2236580debdd37eeac27a5e0ae81d160400b4 (patch)
tree5358646305a76a51b2126b587735eb1e95804732 /server/zserver.h
parent18e990a4f37a750ff71a2c5c9206afcd95df6208 (diff)
server: add CLIENT_FLUSHSUBS control message
This adds support to the server for a new client control message, CLIENT_FLUSHSUBS, which flushes all subscriptions and pending retransmits for clients belonging to a given principal. The target principal must be the same as the sender, unless the sender is on the opstaff ACL. This is the server side of #103
Diffstat (limited to 'server/zserver.h')
-rw-r--r--server/zserver.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/zserver.h b/server/zserver.h
index 28b8fdb..f0f4fda 100644
--- a/server/zserver.h
+++ b/server/zserver.h
@@ -276,6 +276,7 @@ Code_t client_register(ZNotice_t *notice, struct in_addr *host,
Client **client_p, int wantdefaults);
void client_deregister(Client *client, int flush);
void client_flush_host(struct in_addr *host);
+void client_flush_princ(char *target);
void client_dump_clients(FILE *fp);
Client *client_find(struct in_addr *host, unsigned int port);
Code_t client_send_clients(void);