comparison libfaim/aim_internal.h @ 1649:3fe5799b7823

[gaim-migrate @ 1659] Update libfaim. committer: Tailor Script <tailor@pidgin.im>
author Adam Fritzler <mid@auk.cx>
date Tue, 27 Mar 2001 00:51:09 +0000
parents ec31e23aadc7
children f15d449b3167
comparison
equal deleted inserted replaced
1648:09445224e2d9 1649:3fe5799b7823
5 5
6 #ifdef FAIM_INTERNAL 6 #ifdef FAIM_INTERNAL
7 #ifndef __AIM_INTERNAL_H__ 7 #ifndef __AIM_INTERNAL_H__
8 #define __AIM_INTERNAL_H__ 1 8 #define __AIM_INTERNAL_H__ 1
9 9
10 typedef struct {
11 unsigned short family;
12 unsigned short subtype;
13 unsigned short flags;
14 unsigned long id;
15 } aim_modsnac_t;
16
17 #define AIM_MODULENAME_MAXLEN 16
18 #define AIM_MODFLAG_MULTIFAMILY 0x0001
19 typedef struct aim_module_s {
20 unsigned short family;
21 unsigned short flags;
22 unsigned short version;
23 char name[AIM_MODULENAME_MAXLEN+1];
24 int (*snachandler)(struct aim_session_t *sess, struct aim_module_s *mod, struct command_rx_struct *rx, aim_modsnac_t *snac, unsigned char *data, int datalen);
25 void (*shutdown)(struct aim_session_t *sess, struct aim_module_s *mod);
26 void *priv;
27 struct aim_module_s *next;
28 } aim_module_t;
29
30 faim_internal int aim__registermodule(struct aim_session_t *sess, int (*modfirst)(struct aim_session_t *, aim_module_t *));
31 faim_internal void aim__shutdownmodules(struct aim_session_t *sess);
32
33
34 faim_internal int buddylist_modfirst(struct aim_session_t *sess, aim_module_t *mod);
35 faim_internal int admin_modfirst(struct aim_session_t *sess, aim_module_t *mod);
36 faim_internal int bos_modfirst(struct aim_session_t *sess, aim_module_t *mod);
37 faim_internal int search_modfirst(struct aim_session_t *sess, aim_module_t *mod);
38 faim_internal int stats_modfirst(struct aim_session_t *sess, aim_module_t *mod);
39 faim_internal int auth_modfirst(struct aim_session_t *sess, aim_module_t *mod);
40 faim_internal int msg_modfirst(struct aim_session_t *sess, aim_module_t *mod);
41 faim_internal int misc_modfirst(struct aim_session_t *sess, aim_module_t *mod);
42 faim_internal int chatnav_modfirst(struct aim_session_t *sess, aim_module_t *mod);
43 faim_internal int chat_modfirst(struct aim_session_t *sess, aim_module_t *mod);
44 faim_internal int locate_modfirst(struct aim_session_t *sess, aim_module_t *mod);
45 faim_internal int general_modfirst(struct aim_session_t *sess, aim_module_t *mod);
46
10 faim_internal unsigned long aim_genericreq_n(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype); 47 faim_internal unsigned long aim_genericreq_n(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype);
11 faim_internal unsigned long aim_genericreq_l(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_long *); 48 faim_internal unsigned long aim_genericreq_l(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_long *);
12 faim_internal unsigned long aim_genericreq_s(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_short *); 49 faim_internal unsigned long aim_genericreq_s(struct aim_session_t *, struct aim_conn_t *conn, u_short family, u_short subtype, u_short *);
13 50
14 faim_internal int aim_authkeyparse(struct aim_session_t *sess, struct command_rx_struct *command);
15 faim_internal void aim_rxqueue_cleanbyconn(struct aim_session_t *sess, struct aim_conn_t *conn); 51 faim_internal void aim_rxqueue_cleanbyconn(struct aim_session_t *sess, struct aim_conn_t *conn);
16 faim_internal int aim_recv(int fd, void *buf, size_t count); 52 faim_internal int aim_recv(int fd, void *buf, size_t count);
17 53
18 faim_internal int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *command, ...);
19 faim_internal int aim_get_command_rendezvous(struct aim_session_t *sess, struct aim_conn_t *conn); 54 faim_internal int aim_get_command_rendezvous(struct aim_session_t *sess, struct aim_conn_t *conn);
20 55
21 faim_internal int aim_tx_sendframe(struct aim_session_t *sess, struct command_tx_struct *cur); 56 faim_internal int aim_tx_sendframe(struct aim_session_t *sess, struct command_tx_struct *cur);
22 faim_internal unsigned int aim_get_next_txseqnum(struct aim_conn_t *); 57 faim_internal unsigned int aim_get_next_txseqnum(struct aim_conn_t *);
23 faim_internal struct command_tx_struct *aim_tx_new(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned char framing, int chan, int datalen); 58 faim_internal struct command_tx_struct *aim_tx_new(struct aim_session_t *sess, struct aim_conn_t *conn, unsigned char framing, int chan, int datalen);
24 faim_internal int aim_tx_enqueue(struct aim_session_t *, struct command_tx_struct *); 59 faim_internal int aim_tx_enqueue(struct aim_session_t *, struct command_tx_struct *);
25 faim_internal int aim_tx_printqueue(struct aim_session_t *); 60 faim_internal int aim_tx_printqueue(struct aim_session_t *);
26 faim_internal int aim_parse_hostonline(struct aim_session_t *sess, struct command_rx_struct *command, ...);
27 faim_internal int aim_parse_hostversions(struct aim_session_t *sess, struct command_rx_struct *command, ...);
28 faim_internal int aim_parse_accountconfirm(struct aim_session_t *sess, struct command_rx_struct *command);
29 faim_internal int aim_parse_infochange(struct aim_session_t *sess, struct command_rx_struct *command);
30 faim_internal int aim_tx_cleanqueue(struct aim_session_t *, struct aim_conn_t *); 61 faim_internal int aim_tx_cleanqueue(struct aim_session_t *, struct aim_conn_t *);
31 62
32 faim_internal rxcallback_t aim_callhandler(struct aim_session_t *sess, struct aim_conn_t *conn, u_short family, u_short type); 63 faim_internal rxcallback_t aim_callhandler(struct aim_session_t *sess, struct aim_conn_t *conn, u_short family, u_short type);
33 64
34 /* 65 /*
56 87
57 faim_internal int aim_oft_buildheader(unsigned char *,struct aim_fileheader_t *); 88 faim_internal int aim_oft_buildheader(unsigned char *,struct aim_fileheader_t *);
58 faim_internal int aim_listenestablish(u_short); 89 faim_internal int aim_listenestablish(u_short);
59 faim_internal int aim_tx_destroy(struct command_tx_struct *); 90 faim_internal int aim_tx_destroy(struct command_tx_struct *);
60 91
61 faim_internal int aim_authparse(struct aim_session_t *, struct command_rx_struct *);
62 faim_internal int aim_handleredirect_middle(struct aim_session_t *, struct command_rx_struct *, ...);
63 faim_internal int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *, ...); 92 faim_internal int aim_parse_unknown(struct aim_session_t *, struct command_rx_struct *, ...);
64 faim_internal int aim_parse_generalerrs(struct aim_session_t *, struct command_rx_struct *command, ...);
65 faim_internal int aim_parsemotd_middle(struct aim_session_t *sess, struct command_rx_struct *command, ...);
66 93
67 /* these are used by aim_*_clientready */ 94 /* these are used by aim_*_clientready */
68 #define AIM_TOOL_JAVA 0x0001 95 #define AIM_TOOL_JAVA 0x0001
69 #define AIM_TOOL_MAC 0x0002 96 #define AIM_TOOL_MAC 0x0002
70 #define AIM_TOOL_WIN16 0x0003 97 #define AIM_TOOL_WIN16 0x0003
77 unsigned short version; 104 unsigned short version;
78 unsigned short tool; 105 unsigned short tool;
79 unsigned short toolversion; 106 unsigned short toolversion;
80 }; 107 };
81 108
82 faim_internal int aim_parse_ratechange_middle(struct aim_session_t *sess, struct command_rx_struct *command);
83
84 faim_internal int aim_parse_evilnotify_middle(struct aim_session_t *sess, struct command_rx_struct *command);
85 faim_internal int aim_parse_msgack_middle(struct aim_session_t *sess, struct command_rx_struct *command);
86
87 faim_internal int aim_parse_incoming_im_middle(struct aim_session_t *, struct command_rx_struct *);
88 faim_internal int aim_parse_outgoing_im_middle(struct aim_session_t *, struct command_rx_struct *);
89 faim_internal int aim_parse_msgerror_middle(struct aim_session_t *, struct command_rx_struct *);
90 faim_internal int aim_negchan_middle(struct aim_session_t *sess, struct command_rx_struct *command); 109 faim_internal int aim_negchan_middle(struct aim_session_t *sess, struct command_rx_struct *command);
91 faim_internal int aim_parse_bosrights(struct aim_session_t *sess, struct command_rx_struct *command, ...);
92 faim_internal int aim_parse_missedcall(struct aim_session_t *sess, struct command_rx_struct *command);
93 110
94 extern u_char aim_caps[8][16]; 111 extern u_char aim_caps[8][16];
95 faim_internal unsigned short aim_getcap(struct aim_session_t *sess, unsigned char *capblock, int buflen); 112 faim_internal unsigned short aim_getcap(struct aim_session_t *sess, unsigned char *capblock, int buflen);
96 faim_internal int aim_putcap(unsigned char *capblock, int buflen, u_short caps); 113 faim_internal int aim_putcap(unsigned char *capblock, int buflen, u_short caps);
97 114
102 faim_internal int aim_freecookie(struct aim_session_t *sess, struct aim_msgcookie_t *cookie); 119 faim_internal int aim_freecookie(struct aim_session_t *sess, struct aim_msgcookie_t *cookie);
103 faim_internal int aim_msgcookie_gettype(int reqclass); 120 faim_internal int aim_msgcookie_gettype(int reqclass);
104 faim_internal int aim_cookie_free(struct aim_session_t *sess, struct aim_msgcookie_t *cookie); 121 faim_internal int aim_cookie_free(struct aim_session_t *sess, struct aim_msgcookie_t *cookie);
105 122
106 faim_internal int aim_extractuserinfo(struct aim_session_t *sess, unsigned char *, struct aim_userinfo_s *); 123 faim_internal int aim_extractuserinfo(struct aim_session_t *sess, unsigned char *, struct aim_userinfo_s *);
107 faim_internal int aim_parse_userinfo_middle(struct aim_session_t *, struct command_rx_struct *);
108 faim_internal int aim_parse_oncoming_middle(struct aim_session_t *, struct command_rx_struct *);
109 faim_internal int aim_parse_offgoing_middle(struct aim_session_t *, struct command_rx_struct *);
110 faim_internal int aim_putuserinfo(u_char *buf, int buflen, struct aim_userinfo_s *info); 124 faim_internal int aim_putuserinfo(u_char *buf, int buflen, struct aim_userinfo_s *info);
111 faim_internal int aim_parse_locateerr(struct aim_session_t *sess, struct command_rx_struct *command);
112
113 faim_internal int aim_parse_buddyrights(struct aim_session_t *sess, struct command_rx_struct *command, ...);
114
115 faim_internal unsigned long aim_parse_searcherror(struct aim_session_t *, struct command_rx_struct *);
116 faim_internal unsigned long aim_parse_searchreply(struct aim_session_t *, struct command_rx_struct *);
117 125
118 faim_internal int aim_chat_readroominfo(u_char *buf, struct aim_chat_roominfo *outinfo); 126 faim_internal int aim_chat_readroominfo(u_char *buf, struct aim_chat_roominfo *outinfo);
119 faim_internal int aim_chat_parse_infoupdate(struct aim_session_t *sess, struct command_rx_struct *command);
120 faim_internal int aim_chat_parse_joined(struct aim_session_t *sess, struct command_rx_struct *command);
121 faim_internal int aim_chat_parse_leave(struct aim_session_t *sess, struct command_rx_struct *command);
122 faim_internal int aim_chat_parse_incoming(struct aim_session_t *sess, struct command_rx_struct *command);
123 faim_internal int aim_chatnav_parse_info(struct aim_session_t *sess, struct command_rx_struct *command);
124 127
125 faim_internal void faimdprintf(struct aim_session_t *sess, int dlevel, const char *format, ...); 128 faim_internal void faimdprintf(struct aim_session_t *sess, int dlevel, const char *format, ...);
126 129
127 /* why the hell wont cpp let you use #error inside #define's? */ 130 /* why the hell wont cpp let you use #error inside #define's? */
128 /* isn't it single-pass? so the #error would get passed to the compiler --jbm */ 131 /* isn't it single-pass? so the #error would get passed to the compiler --jbm */