src/protocols/yahoo/yahoo_auth.h

changeset 14253
b63ebf84c42b
parent 14252
d10dda2777a9
child 14254
77edc7a6191a
equal deleted inserted replaced
14252:d10dda2777a9 14253:b63ebf84c42b
1 /*
2 * yahoo_auth.h: Header for Yahoo Messenger authentication schemes. Eew.
3 *
4 * Copyright(c) 2003 Cerulean Studios
5 */
6
7 #ifndef _YAHOO_AUTH_H_
8 #define _YAHOO_AUTH_H_
9
10 #define NUM_TYPE_THREES 105
11 #define NUM_TYPE_FOURS 56
12 #define NUM_TYPE_FIVES 37
13
14 unsigned int yahoo_auth_finalCountdown(unsigned int challenge, int divisor, int inner_loop, int outer_loop);
15
16 /* We've defined the Yahoo authentication functions as having types 1-5; all take either 1 or 2 arguments.
17 */
18
19 typedef struct _auth {
20 int type;
21 int var1;
22 int var2;
23 } auth_function_t;
24
25 /* Type 3, 4 and 5 require lookups into ypager.exe's many static chunks of 256 bytes. Store them here.
26 */
27
28 struct buffer_t {
29 unsigned int buffer_start;
30 unsigned char buffer[257];
31 };
32
33 #endif /* _YAHOO_AUTH_H_ */

mercurial