src/protocols/yahoo/yahoo_auth.h

Tue, 15 Jun 2004 06:16:23 +0000

author
Tim Ringenbach <marv@pidgin.im>
date
Tue, 15 Jun 2004 06:16:23 +0000
changeset 9292
bf8f35dc4f52
parent 8350
e691d75462c5
child 11644
939411169d01
permissions
-rwxr-xr-x

[gaim-migrate @ 10095]
Some improvements to our yahoo buddy icon support.
Someone should tell me how to unset a buddy icon for a buddy.
Because the way KingAnt told me (which he wasn't sure about anyway)
just produces a failed g_return thingy, and does nothing.

/*
 * yahoo_auth.h: Header for Yahoo Messenger authentication schemes.  Eew.
 *
 * Copyright(c) 2003 Cerulean Studios
 */


#ifndef _YAHOO_AUTH_H_
#define _YAHOO_AUTH_H_ 

#define NUM_TYPE_THREES 105
#define NUM_TYPE_FOURS 56
#define NUM_TYPE_FIVES 37

unsigned int yahoo_auth_finalCountdown(unsigned int challenge, int divisor, int inner_loop, int outer_loop);

/* We've defined the Yahoo authentication functions as having types 1-5; all take either 1 or 2 arguments.
 */

typedef struct _auth {
	int				type;
	int				var1; 
	int				var2;
} auth_function_t;

/* Type 3, 4 and 5 require lookups into ypager.exe's many static chunks of 256 bytes.  Store them here.
 */

struct buffer_t {
	unsigned int	buffer_start;
	unsigned char	buffer[257];
};


#endif /* _YAHOO_AUTH_H_ */

mercurial