]> andersk Git - libfaim.git/blame - deprecated/discarded.c
- Sun Oct 14 19:45:54 PDT 2001
[libfaim.git] / deprecated / discarded.c
CommitLineData
9de3ca7e 1/*
2 * Hop in the Way-Back machine.... These are left over from the
3 * decoding process back in Jun/Jul 1998 and are found to no longer
4 * be necessary. They're left here for reference _only_. This file
5 * should _not_ be linked into libfaim!
6 */
7
8
9
10/*
11 send_login_phase4_a(int socket)
12
13 Set ICBM Parameter?
14
15*/
16int aim_send_login_phase4_a_1(void)
17{
18 char command_1[] = {
19 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x7a, 0x8c,
20 0x11, 0x9c,
21
22 0x00, 0x01,
23 0x00, 0x00,
24 0x00, 0x03,
25 0x1f, 0x3f,
26 0x03, 0xe7,
27 0x03, 0xe7,
28 0x00, 0x00,
29 0x00, 0x64
30 };
31 int command_1_len = 26;
32 struct command_tx_struct newpacket;
33
34 newpacket.lock = 1;
35 newpacket.conn = aim_getconn_type(AIM_CONN_TYPE_BOS);
36 newpacket.type = 0x02;
37 newpacket.commandlen = command_1_len;
38 newpacket.data = (char *) malloc (newpacket.commandlen);
39 memcpy(newpacket.data, command_1, newpacket.commandlen);
40
41 aim_tx_enqueue(&newpacket);
42
43 return 0;
44}
This page took 0.164117 seconds and 5 git commands to generate.