Mercurial > pidgin
annotate plugins/icq/stdpackets.h @ 1744:46dd3cdefd70
[gaim-migrate @ 1754]
isn't this annoying.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Tue, 24 Apr 2001 00:58:58 +0000 |
parents | 4c510ca3563f |
children | 8ed70631ed15 |
rev | line source |
---|---|
1152 | 1 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 #ifndef _ICQTCPPACKETS_H | |
3 #define _ICQTCPPACKETS_H | |
4 | |
5 #ifdef HAVE_CONFIG_H | |
6 #include <config.h> | |
7 #endif | |
8 | |
9 #define ICQ_UDP_VER 0x0005 | |
10 #define ICQ_TCP_VER 0x0003 | |
11 | |
12 /* TCP Packet Commands */ | |
13 #define ICQ_TCP_HELLO 0xFF | |
14 #define ICQ_TCP_CANCEL 0x07D0 | |
15 #define ICQ_TCP_ACK 0x07DA | |
16 #define ICQ_TCP_MESSAGE 0x07EE | |
17 | |
18 /* TCP Message Types */ | |
19 #define ICQ_TCP_MSG_MSG 0x0001 | |
20 #define ICQ_TCP_MSG_CHAT 0x0002 | |
21 #define ICQ_TCP_MSG_FILE 0x0003 | |
22 #define ICQ_TCP_MSG_URL 0x0004 | |
1432
4c510ca3563f
[gaim-migrate @ 1442]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1309
diff
changeset
|
23 #define ICQ_TCP_MSG_CONTACTLIST 0x0013 |
1152 | 24 #define ICQ_TCP_MSG_READAWAY 0x03E8 |
25 #define ICQ_TCP_MSG_READOCCUPIED 0x03E9 | |
26 #define ICQ_TCP_MSG_READNA 0x03EA | |
27 #define ICQ_TCP_MSG_READDND 0x03EB | |
28 #define ICQ_TCP_MSG_READFFC 0x03EC | |
1309
0a766047b4fd
[gaim-migrate @ 1319]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1152
diff
changeset
|
29 #define ICQ_TCP_MASS_MASK 0x8000 |
1152 | 30 |
31 /* TCP Message Command Types */ | |
32 #define ICQ_TCP_MSG_ACK 0x0000 | |
33 #define ICQ_TCP_MSG_AUTO 0x0000 | |
34 #define ICQ_TCP_MSG_REAL 0x0010 | |
35 #define ICQ_TCP_MSG_LIST 0x0020 | |
36 #define ICQ_TCP_MSG_URGENT 0x0040 | |
37 #define ICQ_TCP_MSG_INVISIBLE 0x0090 | |
38 #define ICQ_TCP_MSG_UNK_1 0x00A0 | |
39 #define ICQ_TCP_MSG_AWAY 0x0110 | |
40 #define ICQ_TCP_MSG_OCCUPIED 0x0210 | |
41 #define ICQ_TCP_MSG_UNK_2 0x0802 | |
42 #define ICQ_TCP_MSG_NA 0x0810 | |
43 #define ICQ_TCP_MSG_NA_2 0x0820 | |
44 #define ICQ_TCP_MSG_DND 0x1010 | |
45 | |
46 /* TCP Message Statuses */ | |
47 #define ICQ_TCP_STATUS_ONLINE 0x0000 | |
48 #define ICQ_TCP_STATUS_REFUSE 0x0001 | |
49 #define ICQ_TCP_STATUS_AWAY 0x0004 | |
50 #define ICQ_TCP_STATUS_OCCUPIED 0x0009 | |
51 #define ICQ_TCP_STATUS_DND 0x000A | |
52 #define ICQ_TCP_STATUS_NA 0x000E | |
53 #define ICQ_TCP_STATUS_FREE_CHAT ICQ_TCP_STATUS_ONLINE | |
54 #define ICQ_TCP_STATUS_INVISIBLE ICQ_TCP_STATUS_ONLINE | |
55 | |
56 #include "icqpacket.h" | |
57 #include "tcplink.h" | |
58 | |
59 icq_Packet *icq_TCPCreateInitPacket(icq_TCPLink *plink); | |
60 icq_Packet *icq_TCPCreateStdPacket(icq_TCPLink *plink, WORD icq_TCPCommand, | |
61 WORD type, const unsigned char *msg, WORD status, | |
62 WORD msg_command); | |
63 icq_Packet *icq_TCPCreateMessagePacket(icq_TCPLink *plink, const unsigned char *message); | |
64 icq_Packet *icq_TCPCreateURLPacket(icq_TCPLink *plink, const char *message, | |
65 const char *url); | |
66 icq_Packet *icq_TCPCreateChatReqPacket(icq_TCPLink *plink, const unsigned char *message); | |
67 icq_Packet *icq_TCPCreateFileReqPacket(icq_TCPLink *plink, | |
68 const char *message, const char *filename, DWORD size); | |
69 void icq_TCPAppendSequence(ICQLINK *link, icq_Packet *p); | |
70 void icq_TCPAppendSequenceN(ICQLINK *link, icq_Packet *p, DWORD seq); | |
71 | |
72 icq_Packet *icq_TCPCreateMessageAck(icq_TCPLink *plink, const unsigned char *message); | |
73 icq_Packet *icq_TCPCreateURLAck(icq_TCPLink *plink, const unsigned char *message); | |
1432
4c510ca3563f
[gaim-migrate @ 1442]
Eric Warmenhoven <eric@warmenhoven.org>
parents:
1309
diff
changeset
|
74 icq_Packet *icq_TCPCreateContactListAck(icq_TCPLink *plink, const unsigned char *message); |
1152 | 75 icq_Packet *icq_TCPCreateWebPagerAck(icq_TCPLink *plink, const unsigned char *message); |
76 icq_Packet *icq_TCPCreateChatReqAck(icq_TCPLink *plink, WORD port); | |
77 icq_Packet *icq_TCPCreateChatReqCancel(icq_TCPLink *plink, WORD port); | |
78 icq_Packet *icq_TCPCreateChatReqRefuse(icq_TCPLink *plink, WORD port, | |
79 const char *reason); | |
80 icq_Packet *icq_TCPCreateFileReqAck(icq_TCPLink *plink, WORD port); | |
81 icq_Packet *icq_TCPCreateFileReqCancel(icq_TCPLink *plink, WORD port); | |
82 icq_Packet *icq_TCPCreateFileReqRefuse(icq_TCPLink *plink, WORD port, | |
83 const char *reason); | |
84 | |
85 icq_Packet *icq_TCPCreateChatInfoPacket(icq_TCPLink *plink, const char *name, | |
86 DWORD foreground, DWORD background); | |
87 icq_Packet *icq_TCPCreateChatInfo2Packet(icq_TCPLink *plink, const char *name, | |
88 DWORD foreground, DWORD background); | |
89 icq_Packet *icq_TCPCreateChatFontInfoPacket(icq_TCPLink *plink); | |
90 | |
91 icq_Packet *icq_TCPCreateFile00Packet(DWORD num_files, DWORD total_bytes, DWORD speed, const char *name); | |
92 icq_Packet *icq_TCPCreateFile01Packet(DWORD speed, const char *name); | |
93 icq_Packet *icq_TCPCreateFile02Packet(const char *filename, DWORD filesize, DWORD speed); | |
94 icq_Packet *icq_TCPCreateFile03Packet(DWORD filesize, DWORD speed); | |
95 icq_Packet *icq_TCPCreateFile04Packet(DWORD filenum); | |
96 icq_Packet *icq_TCPCreateFile05Packet(DWORD speed); | |
97 icq_Packet *icq_TCPCreateFile06Packet(int length, void *data); | |
98 | |
99 icq_Packet *icq_UDPCreateStdPacket(ICQLINK *link, WORD cmd); | |
100 icq_Packet *icq_UDPCreateStdSeqPacket(ICQLINK *link, WORD cmd, WORD seq); | |
101 | |
102 #endif /* _ICQTCPPACKETS_H */ | |
103 | |
104 /* From `tcppackets.c': */ | |
105 |