2 * Purple's oscar protocol plugin
3 * This file is the legal property of its developers.
4 * Please see the AUTHORS file distributed alongside this file.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 * Cookie Caching stuff. Adam wrote this, apparently just some
23 * derivatives of n's SNAC work. I cleaned it up, added comments.
28 * I'm assuming that cookies are type-specific. that is, we can have
29 * "1234578" for type 1 and type 2 concurrently. if i'm wrong, then we
30 * lose some error checking. if we assume cookies are not type-specific and are
31 * wrong, we get quirky behavior when cookies step on each others' toes.
37 * aim_cachecookie - appends a cookie to the cookie list
39 * if cookie->cookie for type cookie->type is found, updates the
40 * ->addtime of the found structure; otherwise adds the given cookie
43 * @param od session to add to
44 * @param cookie pointer to struct to append
45 * @return returns -1 on error, 0 on append, 1 on update. the cookie you pass
46 * in may be free'd, so don't count on its value after calling this!
48 int aim_cachecookie(OscarData
*od
, IcbmCookie
*cookie
)
55 newcook
= aim_checkcookie(od
, cookie
->cookie
, cookie
->type
);
57 if (newcook
== cookie
) {
58 newcook
->addtime
= time(NULL
);
61 aim_cookie_free(od
, newcook
);
63 cookie
->addtime
= time(NULL
);
65 cookie
->next
= od
->msgcookies
;
66 od
->msgcookies
= cookie
;
72 * aim_uncachecookie - grabs a cookie from the cookie cache (removes it from the list)
74 * takes a cookie string and a cookie type and finds the cookie struct associated with that duple, removing it from the cookie list ikn the process.
76 * @param od session to grab cookie from
77 * @param cookie cookie string to look for
78 * @param type cookie type to look for
79 * @return if found, returns the struct; if none found (or on error), returns NULL:
81 IcbmCookie
*aim_uncachecookie(OscarData
*od
, guint8
*cookie
, int type
)
83 IcbmCookie
*cur
, **prev
;
85 if (!cookie
|| !od
->msgcookies
)
88 for (prev
= &od
->msgcookies
; (cur
= *prev
); ) {
89 if ((cur
->type
== type
) &&
90 (memcmp(cur
->cookie
, cookie
, 8) == 0)) {
101 * aim_mkcookie - generate an IcbmCookie *struct from a cookie string, a type, and a data pointer.
103 * @param c pointer to the cookie string array
104 * @param type cookie type to use
105 * @param data data to be cached with the cookie
106 * @return returns NULL on error, a pointer to the newly-allocated
109 IcbmCookie
*aim_mkcookie(guint8
*c
, int type
, void *data
)
116 cookie
= g_new0(IcbmCookie
, 1);
120 memcpy(cookie
->cookie
, c
, 8);
126 * aim_checkcookie - check to see if a cookietuple has been cached
128 * @param od session to check for the cookie in
129 * @param cookie pointer to the cookie string array
130 * @param type type of the cookie to look for
131 * @return returns a pointer to the cookie struct (still in the list)
132 * on success; returns NULL on error/not found
135 IcbmCookie
*aim_checkcookie(OscarData
*od
, const guint8
*cookie
, const int type
)
139 for (cur
= od
->msgcookies
; cur
; cur
= cur
->next
) {
140 if ((cur
->type
== type
) &&
141 (memcmp(cur
->cookie
, cookie
, 8) == 0))
149 * aim_cookie_free - free an IcbmCookie struct
151 * this function removes the cookie *cookie from the list of cookies
152 * in od, and then frees all memory associated with it. including
153 * its data! if you want to use the private data after calling this,
154 * make sure you copy it first.
156 * @param od session to remove the cookie from
157 * @param cookie the address of a pointer to the cookie struct to remove
158 * @return returns -1 on error, 0 on success.
161 int aim_cookie_free(OscarData
*od
, IcbmCookie
*cookie
)
163 IcbmCookie
*cur
, **prev
;
168 for (prev
= &od
->msgcookies
; (cur
= *prev
); ) {
175 g_free(cookie
->data
);