X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=apps%2Fsilcd%2Fpacket_send.h;h=2b0681b6012079463602f9fa9fbecc270878b880;hb=c257b555225193e54d85daf541d29578b3c93882;hp=e6abf48e062eb4b16fdf7f16239532fc78710072;hpb=33fde1853daddd7f34565507cb96652f0cec4ee2;p=silc.git diff --git a/apps/silcd/packet_send.h b/apps/silcd/packet_send.h index e6abf48e..2b0681b6 100644 --- a/apps/silcd/packet_send.h +++ b/apps/silcd/packet_send.h @@ -2,15 +2,14 @@ packet_send.h - Author: Pekka Riikonen + Author: Pekka Riikonen - Copyright (C) 1997 - 2001 Pekka Riikonen + Copyright (C) 1997 - 2004 Pekka Riikonen This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - + the Free Software Foundation; version 2 of the License. + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -27,30 +26,30 @@ int silc_server_packet_send_real(SilcServer server, SilcSocketConnection sock, bool force_send); void silc_server_packet_send(SilcServer server, - SilcSocketConnection sock, - SilcPacketType type, + SilcSocketConnection sock, + SilcPacketType type, SilcPacketFlags flags, - unsigned char *data, + unsigned char *data, SilcUInt32 data_len, bool force_send); void silc_server_packet_send_dest(SilcServer server, - SilcSocketConnection sock, - SilcPacketType type, + SilcSocketConnection sock, + SilcPacketType type, SilcPacketFlags flags, void *dst_id, SilcIdType dst_id_type, - unsigned char *data, + unsigned char *data, SilcUInt32 data_len, bool force_send); void silc_server_packet_send_srcdest(SilcServer server, - SilcSocketConnection sock, - SilcPacketType type, + SilcSocketConnection sock, + SilcPacketType type, SilcPacketFlags flags, void *src_id, SilcIdType src_id_type, void *dst_id, SilcIdType dst_id_type, - unsigned char *data, + unsigned char *data, SilcUInt32 data_len, bool force_send); void silc_server_packet_broadcast(SilcServer server, @@ -60,12 +59,11 @@ void silc_server_packet_route(SilcServer server, SilcSocketConnection sock, SilcPacketContext *packet); void silc_server_packet_send_clients(SilcServer server, - SilcClientEntry *clients, - SilcUInt32 clients_count, - SilcPacketType type, + SilcHashTable clients, + SilcPacketType type, SilcPacketFlags flags, bool route, - unsigned char *data, + unsigned char *data, SilcUInt32 data_len, bool force_send); void silc_server_packet_send_to_channel(SilcServer server, @@ -73,13 +71,14 @@ void silc_server_packet_send_to_channel(SilcServer server, SilcChannelEntry channel, SilcPacketType type, bool route, + bool send_to_clients, unsigned char *data, SilcUInt32 data_len, bool force_send); void silc_server_packet_relay_to_channel(SilcServer server, SilcSocketConnection sender_sock, SilcChannelEntry channel, - void *sender_id, + void *sender_id, SilcIdType sender_type, SilcClientEntry sender_entry, unsigned char *data, @@ -123,7 +122,8 @@ void silc_server_send_notify_nick_change(SilcServer server, SilcSocketConnection sock, bool broadcast, SilcClientID *old_id, - SilcClientID *new_id); + SilcClientID *new_id, + const char *nickname); void silc_server_send_notify_join(SilcServer server, SilcSocketConnection sock, bool broadcast, @@ -140,15 +140,18 @@ void silc_server_send_notify_cmode(SilcServer server, SilcChannelEntry channel, SilcUInt32 mode_mask, void *id, SilcIdType id_type, - char *cipher, char *hmac, - char *passphrase); + const char *cipher, const char *hmac, + const char *passphrase, + SilcPublicKey founder_key, + SilcBuffer channel_pubkeys); void silc_server_send_notify_cumode(SilcServer server, SilcSocketConnection sock, bool broadcast, SilcChannelEntry channel, SilcUInt32 mode_mask, void *id, SilcIdType id_type, - SilcClientID *target); + SilcClientID *target, + SilcPublicKey founder_key); void silc_server_send_notify_signoff(SilcServer server, SilcSocketConnection sock, bool broadcast, @@ -171,7 +174,8 @@ void silc_server_send_notify_killed(SilcServer server, SilcSocketConnection sock, bool broadcast, SilcClientID *client_id, - char *comment); + const char *comment, + void *killer, SilcIdType killer_type); void silc_server_send_notify_umode(SilcServer server, SilcSocketConnection sock, bool broadcast, @@ -181,13 +185,22 @@ void silc_server_send_notify_ban(SilcServer server, SilcSocketConnection sock, bool broadcast, SilcChannelEntry channel, - char *add, char *del); + unsigned char *action, + SilcBuffer list); void silc_server_send_notify_invite(SilcServer server, SilcSocketConnection sock, bool broadcast, SilcChannelEntry channel, SilcClientID *client_id, - char *add, char *del); + unsigned char *action, + SilcBuffer list); +void silc_server_send_notify_watch(SilcServer server, + SilcSocketConnection sock, + SilcClientEntry watcher, + SilcClientEntry client, + const char *nickname, + SilcNotifyType type, + SilcPublicKey public_key); void silc_server_send_notify_dest(SilcServer server, SilcSocketConnection sock, bool broadcast, @@ -199,6 +212,7 @@ void silc_server_send_notify_to_channel(SilcServer server, SilcSocketConnection sender, SilcChannelEntry channel, bool route_notify, + bool send_to_clients, SilcNotifyType type, SilcUInt32 argc, ...); void silc_server_send_notify_on_channels(SilcServer server, @@ -209,36 +223,38 @@ void silc_server_send_notify_on_channels(SilcServer server, void silc_server_send_new_id(SilcServer server, SilcSocketConnection sock, bool broadcast, - void *id, SilcIdType id_type, + void *id, SilcIdType id_type, SilcUInt32 id_len); void silc_server_send_new_channel(SilcServer server, SilcSocketConnection sock, bool broadcast, char *channel_name, - void *channel_id, + void *channel_id, SilcUInt32 channel_id_len, SilcUInt32 mode); void silc_server_send_channel_key(SilcServer server, SilcSocketConnection sender, SilcChannelEntry channel, unsigned char route); -void silc_server_send_command(SilcServer server, +void silc_server_send_command(SilcServer server, SilcSocketConnection sock, - SilcCommand command, + SilcCommand command, SilcUInt16 ident, SilcUInt32 argc, ...); -void silc_server_send_command_reply(SilcServer server, +void silc_server_send_command_reply(SilcServer server, SilcSocketConnection sock, - SilcCommand command, - SilcCommandStatus status, + SilcCommand command, + SilcStatus status, + SilcStatus error, SilcUInt16 ident, SilcUInt32 argc, ...); -void silc_server_send_dest_command_reply(SilcServer server, +void silc_server_send_dest_command_reply(SilcServer server, SilcSocketConnection sock, void *dst_id, SilcIdType dst_id_type, - SilcCommand command, - SilcCommandStatus status, + SilcCommand command, + SilcStatus status, + SilcStatus error, SilcUInt16 ident, SilcUInt32 argc, ...); void silc_server_send_heartbeat(SilcServer server, @@ -256,5 +272,17 @@ void silc_server_send_connection_auth_request(SilcServer server, SilcAuthMethod auth_meth); void silc_server_packet_queue_purge(SilcServer server, SilcSocketConnection sock); +void silc_server_send_opers(SilcServer server, + SilcPacketType type, + SilcPacketFlags flags, + bool route, bool local, + unsigned char *data, + SilcUInt32 data_len, + bool force_send); +void silc_server_send_opers_notify(SilcServer server, + bool route, + bool local, + SilcNotifyType type, + SilcUInt32 argc, ...); -#endif +#endif /* PACKET_SEND_H */