updates.
[silc.git] / apps / irssi / src / silc / core / client_ops.h
1 /*
2
3   client_ops.h
4
5   Author: Pekka Riikonen <priikone@poseidon.pspt.fi>
6
7   Copyright (C) 2001 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; either version 2 of the License, or
12   (at your option) any later version.
13   
14   This program is distributed in the hope that it will be useful,
15   but WITHOUT ANY WARRANTY; without even the implied warranty of
16   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17   GNU General Public License for more details.
18
19 */
20
21 #ifndef CLIENT_OPS_H
22 #define CLIENT_OPS_H
23
24 void silc_say(SilcClient client, SilcClientConnection conn, char *msg, ...);
25 void silc_say_error(char *msg, ...);
26 void silc_channel_message(SilcClient client, SilcClientConnection conn,
27                           SilcClientEntry sender, 
28                           SilcChannelEntry channel, 
29                           SilcMessageFlags flags, char *msg);
30 void silc_private_message(SilcClient client, SilcClientConnection conn,
31                           SilcClientEntry sender, 
32                           SilcMessageFlags flags, char *msg);
33 void silc_notify(SilcClient client, SilcClientConnection conn, 
34                  SilcNotifyType type, ...);
35 void silc_command(SilcClient client, SilcClientConnection conn, 
36                   SilcClientCommandContext cmd_context, int success,
37                   SilcCommand command);
38 void silc_command_reply(SilcClient client, SilcClientConnection conn,
39                         SilcCommandPayload cmd_payload, int success,
40                         SilcCommand command, SilcCommandStatus status, ...);
41 void silc_connect(SilcClient client, SilcClientConnection conn, int success);
42 void silc_disconnect(SilcClient client, SilcClientConnection conn);
43 void silc_ask_passphrase(SilcClient client, SilcClientConnection conn,
44                          SilcAskPassphrase completion, void *context);
45 void silc_verify_public_key(SilcClient client, SilcClientConnection conn,
46                             SilcSocketType conn_type, unsigned char *pk, 
47                             uint32 pk_len, SilcSKEPKType pk_type,
48                             SilcVerifyPublicKey completion, void *context);
49 int silc_get_auth_method(SilcClient client, SilcClientConnection conn,
50                          char *hostname, uint16 port,
51                          SilcProtocolAuthMeth *auth_meth,
52                          unsigned char **auth_data,
53                          uint32 *auth_data_len);
54 void silc_failure(SilcClient client, SilcClientConnection conn, 
55                   SilcProtocol protocol, void *failure);
56 int silc_key_agreement(SilcClient client, SilcClientConnection conn,
57                        SilcClientEntry client_entry, char *hostname,
58                        int port,
59                        SilcKeyAgreementCallback *completion,
60                        void **context);
61 #endif