]> andersk Git - libfaim.git/blame_incremental - aim_auth.c
- Wed Nov 8 02:23:25 UTC 2000
[libfaim.git] / aim_auth.c
... / ...
CommitLineData
1/*
2 aim_auth.c
3
4 Deals with the authorizer.
5
6 */
7
8#include <faim/aim.h>
9
10/* this just pushes the passed cookie onto the passed connection -- NO SNAC! */
11faim_export int aim_auth_sendcookie(struct aim_session_t *sess,
12 struct aim_conn_t *conn,
13 unsigned char *chipsahoy)
14{
15 struct command_tx_struct *newpacket;
16 int curbyte=0;
17
18 if (!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0001, conn, 4+2+2+AIM_COOKIELEN)))
19 return -1;
20
21 newpacket->lock = 1;
22
23 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0000);
24 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
25 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0006);
26 curbyte += aimutil_put16(newpacket->data+curbyte, AIM_COOKIELEN);
27 memcpy(newpacket->data+curbyte, chipsahoy, AIM_COOKIELEN);
28
29 return aim_tx_enqueue(sess, newpacket);
30}
31
32faim_export unsigned long aim_auth_clientready(struct aim_session_t *sess,
33 struct aim_conn_t *conn)
34{
35 struct command_tx_struct *newpacket;
36 int curbyte = 0;
37
38 if (!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, 26)))
39 return -1;
40
41 newpacket->lock = 1;
42
43 curbyte += aim_putsnac(newpacket->data+curbyte, 0x0001, 0x0002, 0x0000, sess->snac_nextid);
44 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
45 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0002);
46 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
47 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0013);
48 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0007);
49 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
50 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
51 curbyte += aimutil_put16(newpacket->data+curbyte, 0x0001);
52
53 aim_tx_enqueue(sess, newpacket);
54
55 {
56 struct aim_snac_t snac;
57
58 snac.id = sess->snac_nextid;
59 snac.family = 0x0001;
60 snac.type = 0x0004;
61 snac.flags = 0x0000;
62
63 snac.data = NULL;
64
65 aim_newsnac(sess, &snac);
66 }
67
68 return (sess->snac_nextid++);
69}
70
71faim_export unsigned long aim_auth_changepasswd(struct aim_session_t *sess,
72 struct aim_conn_t *conn,
73 char *new, char *current)
74{
75 struct command_tx_struct *newpacket;
76 int i;
77
78 if (!(newpacket = aim_tx_new(AIM_FRAMETYPE_OSCAR, 0x0002, conn, 10+4+strlen(current)+4+strlen(new))))
79 return -1;
80
81 newpacket->lock = 1;
82
83 i = aim_putsnac(newpacket->data, 0x0007, 0x0004, 0x0000, sess->snac_nextid);
84
85 /* current password TLV t(0002) */
86 i += aim_puttlv_str(newpacket->data+i, 0x0002, strlen(current), current);
87
88 /* new password TLV t(0012) */
89 i += aim_puttlv_str(newpacket->data+i, 0x0012, strlen(new), new);
90
91 aim_tx_enqueue(sess, newpacket);
92
93 {
94 struct aim_snac_t snac;
95
96 snac.id = sess->snac_nextid;
97 snac.family = 0x0001;
98 snac.type = 0x0004;
99 snac.flags = 0x0000;
100
101 snac.data = NULL;
102
103 aim_newsnac(sess, &snac);
104 }
105
106 return (sess->snac_nextid++);
107}
This page took 0.078753 seconds and 5 git commands to generate.