diff options
| author | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-15 21:31:52 -0700 | 
|---|---|---|
| committer | Wilmer van der Gaast <wilmer@gaast.net> | 2007-04-15 21:31:52 -0700 | 
| commit | cfc8d58f4c15048e943800272017f69804bb61b7 (patch) | |
| tree | b777cadc8b97774db995f449a81ed34fe10fe800 /protocols/yahoo | |
| parent | 6bbb939e953bbe1ca9ed3101a1569abe4521f543 (diff) | |
Updating the Yahoo! module. This seems to fix handling of incoming away
states/messages, should fix some issues with group chats, and unfortunately
also adds some crap which I don't want to clean up for now.
Diffstat (limited to 'protocols/yahoo')
| -rw-r--r-- | protocols/yahoo/libyahoo2.c | 571 | ||||
| -rw-r--r-- | protocols/yahoo/yahoo.c | 102 | ||||
| -rw-r--r-- | protocols/yahoo/yahoo2.h | 7 | ||||
| -rw-r--r-- | protocols/yahoo/yahoo2_callbacks.h | 229 | ||||
| -rw-r--r-- | protocols/yahoo/yahoo2_types.h | 15 | ||||
| -rw-r--r-- | protocols/yahoo/yahoo_util.c | 14 | 
6 files changed, 696 insertions, 242 deletions
| diff --git a/protocols/yahoo/libyahoo2.c b/protocols/yahoo/libyahoo2.c index 69b63baa..38041ad4 100644 --- a/protocols/yahoo/libyahoo2.c +++ b/protocols/yahoo/libyahoo2.c @@ -104,6 +104,8 @@ void yahoo_register_callbacks(struct yahoo_callbacks * tyc)  #define YAHOO_CALLBACK(x)	x  #endif +static int yahoo_send_data(int fd, void *data, int len); +  int yahoo_log_message(char * fmt, ...)  {  	char out[1024]; @@ -203,7 +205,12 @@ enum yahoo_service { /* these are easier to see in hex */  	YAHOO_SERVICE_CHATEXIT = 0x9b,  	YAHOO_SERVICE_CHATLOGOUT = 0xa0,  	YAHOO_SERVICE_CHATPING, -	YAHOO_SERVICE_COMMENT = 0xa8 +	YAHOO_SERVICE_COMMENT = 0xa8, +	YAHOO_SERVICE_STEALTH = 0xb9, +	YAHOO_SERVICE_PICTURE_CHECKSUM = 0xbd, +	YAHOO_SERVICE_PICTURE = 0xbe, +	YAHOO_SERVICE_PICTURE_UPDATE = 0xc1, +	YAHOO_SERVICE_PICTURE_UPLOAD = 0xc2  };  struct yahoo_pair { @@ -740,6 +747,9 @@ static void yahoo_send_packet(struct yahoo_input_data *yid, struct yahoo_packet  	yahoo_packet_dump(data, len); +	if( yid->type == YAHOO_CONNECTION_FT ) +		yahoo_send_data(yid->fd, data, len); +	else  	yahoo_add_to_send_queue(yid, data, len);  	FREE(data);  } @@ -925,6 +935,7 @@ static void yahoo_process_notify(struct yahoo_input_data *yid, struct yahoo_pack  	struct yahoo_data *yd = yid->yd;  	char *msg = NULL;  	char *from = NULL; +	char *to = NULL;  	int stat = 0;  	int accept = 0;  	char *ind = NULL; @@ -933,6 +944,8 @@ static void yahoo_process_notify(struct yahoo_input_data *yid, struct yahoo_pack  		struct yahoo_pair *pair = l->data;  		if (pair->key == 4)  			from = pair->value; +		if (pair->key == 5) +			to = pair->value;  		if (pair->key == 49)  			msg = pair->value;  		if (pair->key == 13) @@ -950,19 +963,19 @@ static void yahoo_process_notify(struct yahoo_input_data *yid, struct yahoo_pack  		return;  	if (!strncasecmp(msg, "TYPING", strlen("TYPING")))  -		YAHOO_CALLBACK(ext_yahoo_typing_notify)(yd->client_id, from, stat); +		YAHOO_CALLBACK(ext_yahoo_typing_notify)(yd->client_id, to, from, stat);  	else if (!strncasecmp(msg, "GAME", strlen("GAME")))  -		YAHOO_CALLBACK(ext_yahoo_game_notify)(yd->client_id, from, stat); +		YAHOO_CALLBACK(ext_yahoo_game_notify)(yd->client_id, to, from, stat);  	else if (!strncasecmp(msg, "WEBCAMINVITE", strlen("WEBCAMINVITE")))   	{  		if (!strcmp(ind, " ")) { -			YAHOO_CALLBACK(ext_yahoo_webcam_invite)(yd->client_id, from); +			YAHOO_CALLBACK(ext_yahoo_webcam_invite)(yd->client_id, to, from);  		} else {  			accept = atoi(ind);  			/* accept the invitation (-1 = deny 1 = accept) */  			if (accept < 0)  				accept = 0; -			YAHOO_CALLBACK(ext_yahoo_webcam_invite_reply)(yd->client_id, from, accept); +			YAHOO_CALLBACK(ext_yahoo_webcam_invite_reply)(yd->client_id, to, from, accept);  		}  	}  	else @@ -1021,7 +1034,7 @@ static void yahoo_process_filetransfer(struct yahoo_input_data *yid, struct yaho  			*tmp = '\0';  	}  	if(url && from) -		YAHOO_CALLBACK(ext_yahoo_got_file)(yd->client_id, from, url, expires, msg, filename, filesize); +		YAHOO_CALLBACK(ext_yahoo_got_file)(yd->client_id, to, from, url, expires, msg, filename, filesize);  } @@ -1095,31 +1108,31 @@ static void yahoo_process_conference(struct yahoo_input_data *yid, struct yahoo_  		if(pkt->status == 2)  			;  		else if(members) -			YAHOO_CALLBACK(ext_yahoo_got_conf_invite)(yd->client_id, host, room, msg, members); +			YAHOO_CALLBACK(ext_yahoo_got_conf_invite)(yd->client_id, id, host, room, msg, members);  		else if(msg) -			YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, msg, 0); +			YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, msg, 0, E_CONFNOTAVAIL);  		break;  	case YAHOO_SERVICE_CONFADDINVITE:  		if(pkt->status == 2)  			;  		else -			YAHOO_CALLBACK(ext_yahoo_got_conf_invite)(yd->client_id, host, room, msg, members); +			YAHOO_CALLBACK(ext_yahoo_got_conf_invite)(yd->client_id, id, host, room, msg, members);  		break;  	case YAHOO_SERVICE_CONFDECLINE:  		if(who) -			YAHOO_CALLBACK(ext_yahoo_conf_userdecline)(yd->client_id, who, room, msg); +			YAHOO_CALLBACK(ext_yahoo_conf_userdecline)(yd->client_id, id, who, room, msg);  		break;  	case YAHOO_SERVICE_CONFLOGON:  		if(who) -			YAHOO_CALLBACK(ext_yahoo_conf_userjoin)(yd->client_id, who, room); +			YAHOO_CALLBACK(ext_yahoo_conf_userjoin)(yd->client_id, id, who, room);  		break;  	case YAHOO_SERVICE_CONFLOGOFF:  		if(who) -			YAHOO_CALLBACK(ext_yahoo_conf_userleave)(yd->client_id, who, room); +			YAHOO_CALLBACK(ext_yahoo_conf_userleave)(yd->client_id, id, who, room);  		break;  	case YAHOO_SERVICE_CONFMSG:  		if(who) -			YAHOO_CALLBACK(ext_yahoo_conf_message)(yd->client_id, who, room, msg, utf8); +			YAHOO_CALLBACK(ext_yahoo_conf_message)(yd->client_id, id, who, room, msg, utf8);  		break;  	}  } @@ -1127,6 +1140,7 @@ static void yahoo_process_conference(struct yahoo_input_data *yid, struct yahoo_  static void yahoo_process_chat(struct yahoo_input_data *yid, struct yahoo_packet *pkt)  {  	char *msg = NULL; +	char *id = NULL;  	char *who = NULL;  	char *room = NULL;  	char *topic = NULL; @@ -1143,6 +1157,11 @@ static void yahoo_process_chat(struct yahoo_input_data *yid, struct yahoo_packet  	for (l = pkt->hash; l; l = l->next) {  		struct yahoo_pair *pair = l->data; +		if (pair->key == 1) { +			/* My identity */ +			id = pair->value; +		} +  		if (pair->key == 104) {  			/* Room name */  			room = pair->value; @@ -1217,12 +1236,12 @@ static void yahoo_process_chat(struct yahoo_input_data *yid, struct yahoo_packet  	if(!room) {  		if (pkt->service == YAHOO_SERVICE_CHATLOGOUT) { /* yahoo originated chat logout */ -			YAHOO_CALLBACK(ext_yahoo_chat_yahoologout)(yid->yd->client_id); +			YAHOO_CALLBACK(ext_yahoo_chat_yahoologout)(yid->yd->client_id, id);  			return ;  		}  		if (pkt->service == YAHOO_SERVICE_COMMENT && chaterr)  { -			YAHOO_CALLBACK(ext_yahoo_chat_yahooerror)(yid->yd->client_id); -			return ; +			YAHOO_CALLBACK(ext_yahoo_chat_yahooerror)(yid->yd->client_id, id); +			return;  		}  		WARNING(("We didn't get a room name, ignoring packet")); @@ -1235,7 +1254,7 @@ static void yahoo_process_chat(struct yahoo_input_data *yid, struct yahoo_packet  			WARNING(("Count of members doesn't match No. of members we got"));  		}  		if(firstjoin && members) { -			YAHOO_CALLBACK(ext_yahoo_chat_join)(yid->yd->client_id, room, topic, members, yid->fd); +			YAHOO_CALLBACK(ext_yahoo_chat_join)(yid->yd->client_id, id, room, topic, members, yid->fd);  		} else if(who) {  			if(y_list_length(members) != 1) {  				WARNING(("Got more than 1 member on a normal join")); @@ -1244,7 +1263,7 @@ static void yahoo_process_chat(struct yahoo_input_data *yid, struct yahoo_packet  			while(members) {  				YList *n = members->next;  				currentmember = members->data; -				YAHOO_CALLBACK(ext_yahoo_chat_userjoin)(yid->yd->client_id, room, currentmember); +				YAHOO_CALLBACK(ext_yahoo_chat_userjoin)(yid->yd->client_id, id, room, currentmember);  				y_list_free_1(members);  				members=n;  			} @@ -1252,12 +1271,12 @@ static void yahoo_process_chat(struct yahoo_input_data *yid, struct yahoo_packet  		break;  	case YAHOO_SERVICE_CHATEXIT:  		if(who) { -			YAHOO_CALLBACK(ext_yahoo_chat_userleave)(yid->yd->client_id, room, who); +			YAHOO_CALLBACK(ext_yahoo_chat_userleave)(yid->yd->client_id, id, room, who);  		}  		break;  	case YAHOO_SERVICE_COMMENT:  		if(who) { -			YAHOO_CALLBACK(ext_yahoo_chat_message)(yid->yd->client_id, who, room, msg, msgtype, utf8); +			YAHOO_CALLBACK(ext_yahoo_chat_message)(yid->yd->client_id, id, who, room, msg, msgtype, utf8);  		}  		break;  	} @@ -1316,9 +1335,9 @@ static void yahoo_process_message(struct yahoo_input_data *yid, struct yahoo_pac  		if (pkt->service == YAHOO_SERVICE_SYSMESSAGE) {  			YAHOO_CALLBACK(ext_yahoo_system_message)(yd->client_id, message->msg);  		} else if (pkt->status <= 2 || pkt->status == 5) { -			YAHOO_CALLBACK(ext_yahoo_got_im)(yd->client_id, message->from, message->msg, message->tm, pkt->status, message->utf8); +			YAHOO_CALLBACK(ext_yahoo_got_im)(yd->client_id, message->to, message->from, message->msg, message->tm, pkt->status, message->utf8);  		} else if (pkt->status == 0xffffffff) { -			YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, message->msg, 0); +			YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, message->msg, 0, E_SYSTEM);  		}  		free(message);  	} @@ -1331,13 +1350,32 @@ static void yahoo_process_status(struct yahoo_input_data *yid, struct yahoo_pack  {  	YList *l;  	struct yahoo_data *yd = yid->yd; -	char *name = NULL; -	int state = 0; -	int away = 0; -	int idle = 0; -	char *msg = NULL; + +	struct user +	{ +		char *name;	/* 7	name */ +		int   state;	/* 10	state */ +		int   flags;	/* 13	flags, bit 0 = pager, bit 1 = chat, bit 2 = game */ +		int   mobile;	/* 60	mobile */ +		char *msg;	/* 19	custom status message */ +		int   away;	/* 47	away (or invisible)*/ +		int   buddy_session;	/* 11	state */ +		int   f17;	/* 17	in chat? then what about flags? */ +		int   idle;	/* 137	seconds idle */ +		int   f138;	/* 138	state */ +		char *f184;	/* 184	state */ +		int   f192;	/* 192	state */ +		int   f10001;	/* 10001	state */ +		int   f10002;	/* 10002	state */ +		int   f198;	/* 198	state */ +		char *f197;	/* 197	state */ +		char *f205;	/* 205	state */ +		int   f213;	/* 213	state */ +	} *u; + +	YList *users = 0; -	if(pkt->service == YAHOO_SERVICE_LOGOFF && pkt->status == -1) { +	if (pkt->service == YAHOO_SERVICE_LOGOFF && pkt->status == -1) {  		YAHOO_CALLBACK(ext_yahoo_login_response)(yd->client_id, YAHOO_LOGIN_DUPL, NULL);  		return;  	} @@ -1361,51 +1399,87 @@ static void yahoo_process_status(struct yahoo_input_data *yid, struct yahoo_pack  			NOTICE(("key %d:%s", pair->key, pair->value));  			break;  		case 7: /* the current buddy */ -			name = pair->value; +			u = y_new0(struct user, 1); +			u->name = pair->value; +			users = y_list_prepend(users, u);  			break;  		case 10: /* state */ -			state = strtol(pair->value, NULL, 10); +			((struct user*)users->data)->state = strtol(pair->value, NULL, 10);  			break;  		case 19: /* custom status message */ -			msg = pair->value; +			((struct user*)users->data)->msg = pair->value;  			break;  		case 47: /* is it an away message or not */ -			away = atoi(pair->value); +			((struct user*)users->data)->away = atoi(pair->value);  			break;  		case 137: /* seconds idle */ -			idle = atoi(pair->value); +			((struct user*)users->data)->idle = atoi(pair->value);  			break; -		case 11: /* what is this? */ -			NOTICE(("key %d:%s", pair->key, pair->value)); +		case 11: /* this is the buddy's session id */ +			((struct user*)users->data)->buddy_session = atoi(pair->value);  			break;  		case 17: /* in chat? */ +			((struct user*)users->data)->f17 = atoi(pair->value);  			break; -		case 13: /* in pager? */ -			if (pkt->service == YAHOO_SERVICE_LOGOFF || strtol(pair->value, NULL, 10) == 0) { -				YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, name, YAHOO_STATUS_OFFLINE, NULL, 1); -				break; -			} -			if (state == YAHOO_STATUS_AVAILABLE) { -				YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, name, state, NULL, 0); -			} else if (state == YAHOO_STATUS_CUSTOM) { -				YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, name, state, msg, away); -			} else { -				YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, name, state, NULL, idle); -			} - +		case 13: /* bitmask, bit 0 = pager, bit 1 = chat, bit 2 = game */ +			((struct user*)users->data)->flags = atoi(pair->value);  			break; -		case 60:  +		case 60: /* SMS -> 1 MOBILE USER */  			/* sometimes going offline makes this 2, but invisible never sends it */ -			NOTICE(("key %d:%s", pair->key, pair->value)); -			 break; +			((struct user*)users->data)->mobile = atoi(pair->value); +			break; +		case 138: +			((struct user*)users->data)->f138 = atoi(pair->value); +			break; +		case 184: +			((struct user*)users->data)->f184 = pair->value; +			break; +		case 192: +			((struct user*)users->data)->f192 = atoi(pair->value); +			break; +		case 10001: +			((struct user*)users->data)->f10001 = atoi(pair->value); +			break; +		case 10002: +			((struct user*)users->data)->f10002 = atoi(pair->value); +			break; +		case 198: +			((struct user*)users->data)->f198 = atoi(pair->value); +			break; +		case 197: +			((struct user*)users->data)->f197 = pair->value; +			break; +		case 205: +			((struct user*)users->data)->f205 = pair->value; +			break; +		case 213: +			((struct user*)users->data)->f213 = atoi(pair->value); +			break;  		case 16: /* Custom error message */ -			YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, pair->value, 0); +			YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, pair->value, 0, E_CUSTOM);  			break;  		default:  			WARNING(("unknown status key %d:%s", pair->key, pair->value));  			break;  		}  	} +	 +	while (users) { +		YList *t = users; +		struct user *u = users->data; + +		if (u->name != NULL) { +			if (pkt->service == YAHOO_SERVICE_LOGOFF || u->flags == 0) { +				YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, u->name, YAHOO_STATUS_OFFLINE, NULL, 1, 0, 0); +			} else { +				YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, u->name, u->state, u->msg, u->away, u->idle, u->mobile); +			} +		} + +		users = y_list_remove_link(users, users); +		y_list_free_1(t); +		FREE(u); +	}  }  static void yahoo_process_list(struct yahoo_input_data *yid, struct yahoo_packet *pkt) @@ -1511,6 +1585,113 @@ static void yahoo_process_verify(struct yahoo_input_data *yid, struct yahoo_pack  } +static void yahoo_process_picture_checksum( struct yahoo_input_data *yid, struct yahoo_packet *pkt) +{ +	struct yahoo_data *yd = yid->yd; +	char *from = NULL; +	char *to = NULL; +	int checksum = 0; +	YList *l; + +	for(l = pkt->hash; l; l = l->next) +	{ +		struct yahoo_pair *pair = l->data; + +		switch(pair->key) +		{ +			case 1: +			case 4: +				from = pair->value; +			case 5: +				to = pair->value; +				break; +			case 212: +				break; +			case 192: +				checksum = atoi( pair->value ); +				break; +		} +	} + +	YAHOO_CALLBACK(ext_yahoo_got_buddyicon_checksum)(yd->client_id,to,from,checksum); +} + +static void yahoo_process_picture(struct yahoo_input_data *yid, struct yahoo_packet *pkt) +{ +	struct yahoo_data *yd = yid->yd; +	char *url = NULL; +	char *from = NULL; +	char *to = NULL; +	int status = 0; +	int checksum = 0; +	YList *l; +	 +	for(l = pkt->hash; l; l = l->next) +	{ +		struct yahoo_pair *pair = l->data; + +		switch(pair->key) +		{ +		case 1: +		case 4:		/* sender */ +			from = pair->value; +			break; +		case 5:		/* we */ +			to = pair->value; +			break; +		case 13:		/* request / sending */ +			status = atoi( pair->value ); +			break; +		case 20:		/* url */ +			url = pair->value; +			break; +		case 192:	/*checksum */ +			checksum = atoi( pair->value ); +			break; +		} +	} + +	switch( status ) +	{ +		case 1:	/* this is a request, ignore for now */ +			YAHOO_CALLBACK(ext_yahoo_got_buddyicon_request)(yd->client_id, to, from); +			break; +		case 2:	/* this is cool - we get a picture :) */ +			YAHOO_CALLBACK(ext_yahoo_got_buddyicon)(yd->client_id,to, from, url, checksum); +			break; +	} +} + +static void yahoo_process_picture_upload(struct yahoo_input_data *yid, struct yahoo_packet *pkt) +{ +	struct yahoo_data *yd = yid->yd; +	YList *l; +	char *url = NULL; + +	if ( pkt->status != 1 ) +		return;		/* something went wrong */ +	 +	for(l = pkt->hash; l; l = l->next) +	{ +		struct yahoo_pair *pair = l->data; + +		switch(pair->key) +		{ +			case 5:		/* we */ +				break; +			case 20:		/* url */ +				url = pair->value; +				break; +			case 27:		/* local filename */ +				break; +			case 38:		/* time */ +				break; +		} +	} + +	YAHOO_CALLBACK(ext_yahoo_buddyicon_uploaded)(yd->client_id, url); +} +  static void yahoo_process_auth_pre_0x0b(struct yahoo_input_data *yid,   		const char *seed, const char *sn)  { @@ -2153,6 +2334,8 @@ static void yahoo_process_contact(struct yahoo_input_data *yid, struct yahoo_pac  	int state = YAHOO_STATUS_AVAILABLE;  	int online = FALSE;  	int away = 0; +	int idle = 0; +	int mobile = 0;  	YList *l; @@ -2174,12 +2357,17 @@ static void yahoo_process_contact(struct yahoo_input_data *yid, struct yahoo_pac  			online = strtol(pair->value, NULL, 10);  		else if (pair->key == 47)  			away = strtol(pair->value, NULL, 10); +		else if (pair->key == 137) +			idle = strtol(pair->value, NULL, 10); +		else if (pair->key == 60) +			mobile = strtol(pair->value, NULL, 10); +		  	}  	if (id)  		YAHOO_CALLBACK(ext_yahoo_contact_added)(yd->client_id, id, who, msg);  	else if (name) -		YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, name, state, msg, away); +		YAHOO_CALLBACK(ext_yahoo_status_changed)(yd->client_id, name, state, msg, away, idle, mobile);  	else if(pkt->status == 0x07)  		YAHOO_CALLBACK(ext_yahoo_rejected)(yd->client_id, who, msg);  } @@ -2307,7 +2495,7 @@ static void yahoo_process_ignore(struct yahoo_input_data *yid, struct yahoo_pack  	 */  /*	if(status) -		YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, status, who, 0); +		YAHOO_CALLBACK(ext_yahoo_error)(yd->client_id, who, 0, status);  */	  } @@ -2331,7 +2519,7 @@ static void yahoo_process_voicechat(struct yahoo_input_data *yid, struct yahoo_p  			room=pair->value;  	} -	NOTICE(("got voice chat invite from %s in %s", who, room)); +	NOTICE(("got voice chat invite from %s in %s to identity %s", who, room, me));  	/*   	 * send: s:0 1:me 5:who 57:room 13:1  	 * ????  s:4 5:who 10:99 19:-1615114531 @@ -2343,6 +2531,21 @@ static void yahoo_process_voicechat(struct yahoo_input_data *yid, struct yahoo_p  	 */  } +static void yahoo_process_ping(struct yahoo_input_data *yid, struct yahoo_packet *pkt) +{ +	char *errormsg = NULL; +	 +	YList *l; +	for (l = pkt->hash; l; l = l->next) { +		struct yahoo_pair *pair = l->data; +		if (pair->key == 16) +			errormsg = pair->value; +	} +	 +	NOTICE(("got ping packet")); +	YAHOO_CALLBACK(ext_yahoo_got_ping)(yid->yd->client_id, errormsg); +} +  static void _yahoo_webcam_get_server_connected(int fd, int error, void *d)  {  	struct yahoo_input_data *yid = d; @@ -2518,6 +2721,9 @@ static void yahoo_packet_process(struct yahoo_input_data *yid, struct yahoo_pack  	case YAHOO_SERVICE_WEBCAM:  		yahoo_process_webcam_key(yid, pkt);  		break; +	case YAHOO_SERVICE_PING: +		yahoo_process_ping(yid, pkt); +		break;  	case YAHOO_SERVICE_IDLE:  	case YAHOO_SERVICE_MAILSTAT:  	case YAHOO_SERVICE_CHATINVITE: @@ -2525,7 +2731,6 @@ static void yahoo_packet_process(struct yahoo_input_data *yid, struct yahoo_pack  	case YAHOO_SERVICE_NEWPERSONALMAIL:  	case YAHOO_SERVICE_ADDIDENT:  	case YAHOO_SERVICE_ADDIGNORE: -	case YAHOO_SERVICE_PING:  	case YAHOO_SERVICE_GOTGROUPRENAME:  	case YAHOO_SERVICE_GROUPRENAME:  	case YAHOO_SERVICE_PASSTHROUGH2: @@ -2537,6 +2742,15 @@ static void yahoo_packet_process(struct yahoo_input_data *yid, struct yahoo_pack  		WARNING(("unhandled service 0x%02x", pkt->service));  		yahoo_dump_unhandled(pkt);  		break; +	case YAHOO_SERVICE_PICTURE: +		yahoo_process_picture(yid, pkt); +		break; +	case YAHOO_SERVICE_PICTURE_CHECKSUM: +		yahoo_process_picture_checksum(yid, pkt); +		break; +	case YAHOO_SERVICE_PICTURE_UPLOAD: +		yahoo_process_picture_upload(yid, pkt); +		break;	  	default:  		WARNING(("unknown service 0x%02x", pkt->service));  		yahoo_dump_unhandled(pkt); @@ -3346,7 +3560,7 @@ int yahoo_read_ready(int id, int fd, void *data)  		DEBUG_MSG(("len == %d (<= 0)", len));  		if(yid->type == YAHOO_CONNECTION_PAGER) { -			YAHOO_CALLBACK(ext_yahoo_login_response)(yid->yd->client_id, YAHOO_LOGIN_SOCK, NULL); +			YAHOO_CALLBACK(ext_yahoo_error)(yid->yd->client_id, "Connection closed by server", 1, E_CONNECTION);  		}  		yahoo_process_connection[yid->type](yid, 1); @@ -3494,11 +3708,12 @@ int yahoo_get_fd(int id)  		return yid->fd;  } -void yahoo_send_im(int id, const char *from, const char *who, const char *what, int utf8) +void yahoo_send_im(int id, const char *from, const char *who, const char *what, int utf8, int picture)  {  	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER);  	struct yahoo_packet *pkt = NULL;  	struct yahoo_data *yd; +	char pic_str[10];  	if(!yid)  		return; @@ -3507,6 +3722,8 @@ void yahoo_send_im(int id, const char *from, const char *who, const char *what,  	pkt = yahoo_packet_new(YAHOO_SERVICE_MESSAGE, YAHOO_STATUS_OFFLINE, yd->session_id); +	snprintf(pic_str, sizeof(pic_str), "%d", picture); +	  	if(from && strcmp(from, yd->user))  		yahoo_packet_hash(pkt, 0, yd->user);  	yahoo_packet_hash(pkt, 1, from?from:yd->user); @@ -3518,6 +3735,7 @@ void yahoo_send_im(int id, const char *from, const char *who, const char *what,  	yahoo_packet_hash(pkt, 63, ";0");	/* imvironment name; or ;0 */  	yahoo_packet_hash(pkt, 64, "0"); +	yahoo_packet_hash(pkt, 206, pic_str);  	yahoo_send_packet(yid, pkt, 0); @@ -3570,12 +3788,24 @@ void yahoo_set_away(int id, enum yahoo_status state, const char *msg, int away)  		service = YAHOO_SERVICE_ISBACK;  	else  		service = YAHOO_SERVICE_ISAWAY; -	pkt = yahoo_packet_new(service, yd->current_status, yd->session_id); -	snprintf(s, sizeof(s), "%d", yd->current_status); -	yahoo_packet_hash(pkt, 10, s); -	if (yd->current_status == YAHOO_STATUS_CUSTOM) { -		yahoo_packet_hash(pkt, 19, msg); -		yahoo_packet_hash(pkt, 47, away?"1":"0"); +	  +	if ((away == 2) && (yd->current_status == YAHOO_STATUS_AVAILABLE)) { +		pkt = yahoo_packet_new(YAHOO_SERVICE_ISAWAY, YAHOO_STATUS_BRB, yd->session_id); +		yahoo_packet_hash(pkt, 10, "999"); +		yahoo_packet_hash(pkt, 47, "2"); +	}else { +		pkt = yahoo_packet_new(service, YAHOO_STATUS_AVAILABLE, yd->session_id); +		snprintf(s, sizeof(s), "%d", yd->current_status); +		yahoo_packet_hash(pkt, 10, s); +		if (yd->current_status == YAHOO_STATUS_CUSTOM) { +			yahoo_packet_hash(pkt, 19, msg); +			yahoo_packet_hash(pkt, 47, (away == 2)? "2": (away) ?"1":"0"); +		} else { +			yahoo_packet_hash(pkt, 47, (away == 2)? "2": (away) ?"1":"0"); +		} +		 +		 +		  	}  	yahoo_send_packet(yid, pkt, 0); @@ -3816,7 +4046,7 @@ void yahoo_chat_keepalive (int id)  	yahoo_packet_free (pkt);  } -void yahoo_add_buddy(int id, const char *who, const char *group) +void yahoo_add_buddy(int id, const char *who, const char *group, const char *msg)  {  	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER);  	struct yahoo_data *yd; @@ -3833,6 +4063,8 @@ void yahoo_add_buddy(int id, const char *who, const char *group)  	yahoo_packet_hash(pkt, 1, yd->user);  	yahoo_packet_hash(pkt, 7, who);  	yahoo_packet_hash(pkt, 65, group); +	if (msg != NULL) /* add message/request "it's me add me" */ +		yahoo_packet_hash(pkt, 14, msg);  	yahoo_send_packet(yid, pkt, 0);  	yahoo_packet_free(pkt);  } @@ -3898,6 +4130,28 @@ void yahoo_ignore_buddy(int id, const char *who, int unignore)  	yahoo_packet_free(pkt);  } +void yahoo_stealth_buddy(int id, const char *who, int unstealth) +{ +	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER); +	struct yahoo_data *yd; +	struct yahoo_packet *pkt; + +	if(!yid) +		return; +	yd = yid->yd; + +	if (!yd->logged_in) +		return; + +	pkt = yahoo_packet_new(YAHOO_SERVICE_STEALTH, YAHOO_STATUS_AVAILABLE, yd->session_id); +	yahoo_packet_hash(pkt, 1, yd->user); +	yahoo_packet_hash(pkt, 7, who); +	yahoo_packet_hash(pkt, 31, unstealth?"2":"1"); +	yahoo_packet_hash(pkt, 13, "2"); +	yahoo_send_packet(yid, pkt, 0); +	yahoo_packet_free(pkt); +} +  void yahoo_change_buddy_group(int id, const char *who, const char *old_group, const char *new_group)  {  	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER); @@ -4206,6 +4460,100 @@ void yahoo_chat_logoff(int id, const char *from)  	yahoo_packet_free(pkt);  } +void yahoo_buddyicon_request(int id, const char *who) +{ +	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER); +	struct yahoo_data *yd; +	struct yahoo_packet *pkt; + +	if( !yid ) +		return; + +	yd = yid->yd; +	 +	pkt = yahoo_packet_new(YAHOO_SERVICE_PICTURE, YAHOO_STATUS_AVAILABLE, 0); +	yahoo_packet_hash(pkt, 4, yd->user); +	yahoo_packet_hash(pkt, 5, who); +	yahoo_packet_hash(pkt, 13, "1"); +	yahoo_send_packet(yid, pkt, 0); + +	yahoo_packet_free(pkt); +} + +void yahoo_send_picture_info(int id, const char *who, const char *url, int checksum) +{ +	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER); +	struct yahoo_data *yd; +	struct yahoo_packet *pkt; +	char checksum_str[10]; + +	if( !yid ) +		return; + +	yd = yid->yd; + +	snprintf(checksum_str, sizeof(checksum_str), "%d", checksum); + +	pkt = yahoo_packet_new(YAHOO_SERVICE_PICTURE, YAHOO_STATUS_AVAILABLE, 0); +	yahoo_packet_hash(pkt, 1, yd->user); +	yahoo_packet_hash(pkt, 4, yd->user); +	yahoo_packet_hash(pkt, 5, who); +	yahoo_packet_hash(pkt, 13, "2"); +	yahoo_packet_hash(pkt, 20, url); +	yahoo_packet_hash(pkt, 192, checksum_str); +	yahoo_send_packet(yid, pkt, 0); + +	yahoo_packet_free(pkt); +} + +void yahoo_send_picture_update(int id, const char *who, int type) +{ +	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER); +	struct yahoo_data *yd; +	struct yahoo_packet *pkt; +	char type_str[10]; + +	if( !yid ) +		return; + +	yd = yid->yd; + +	snprintf(type_str, sizeof(type_str), "%d", type); + +	pkt = yahoo_packet_new(YAHOO_SERVICE_PICTURE_UPDATE, YAHOO_STATUS_AVAILABLE, 0); +	yahoo_packet_hash(pkt, 1, yd->user); +	yahoo_packet_hash(pkt, 5, who); +	yahoo_packet_hash(pkt, 206, type_str); +	yahoo_send_packet(yid, pkt, 0); + +	yahoo_packet_free(pkt); +} + +void yahoo_send_picture_checksum(int id, const char *who, int checksum) +{ +	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_PAGER); +	struct yahoo_data *yd; +	struct yahoo_packet *pkt; +	char checksum_str[10]; + +	if( !yid ) +		return; + +	yd = yid->yd; +	 +	snprintf(checksum_str, sizeof(checksum_str), "%d", checksum); + +	pkt = yahoo_packet_new(YAHOO_SERVICE_PICTURE_CHECKSUM, YAHOO_STATUS_AVAILABLE, 0); +	yahoo_packet_hash(pkt, 1, yd->user); +	if( who != 0 ) +		yahoo_packet_hash(pkt, 5, who); +	yahoo_packet_hash(pkt, 192, checksum_str); +	yahoo_packet_hash(pkt, 212, "1"); +	yahoo_send_packet(yid, pkt, 0); + +	yahoo_packet_free(pkt); +} +  void yahoo_webcam_close_feed(int id, const char *who)  {  	struct yahoo_input_data *yid = find_input_by_id_and_webcam_user(id, who); @@ -4409,6 +4757,99 @@ struct send_file_data {  	void *user_data;  }; +static void _yahoo_send_picture_connected(int id, int fd, int error, void *data) +{ +	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_FT); +	struct send_file_data *sfd = data; +	struct yahoo_packet *pkt = sfd->pkt; +	unsigned char buff[1024]; + +	if(fd <= 0) { +		sfd->callback(id, fd, error, sfd->user_data); +		FREE(sfd); +		yahoo_packet_free(pkt); +		inputs = y_list_remove(inputs, yid); +		FREE(yid); +		return; +	} + +	yid->fd = fd; +	yahoo_send_packet(yid, pkt, 8); +	yahoo_packet_free(pkt); + +	snprintf((char *)buff, sizeof(buff), "29"); +	buff[2] = 0xc0; +	buff[3] = 0x80; +	 +	write(yid->fd, buff, 4); + +	/*	YAHOO_CALLBACK(ext_yahoo_add_handler)(nyd->fd, YAHOO_INPUT_READ); */ + +	sfd->callback(id, fd, error, sfd->user_data); +	FREE(sfd); +	inputs = y_list_remove(inputs, yid); +	/* +	while(yahoo_tcp_readline(buff, sizeof(buff), nyd->fd) > 0) { +	if(!strcmp(buff, "")) +	break; +} + +	*/ +	yahoo_input_close(yid); +} + +void yahoo_send_picture(int id, const char *name, unsigned long size, +							yahoo_get_fd_callback callback, void *data) +{ +	struct yahoo_data *yd = find_conn_by_id(id); +	struct yahoo_input_data *yid; +	struct yahoo_server_settings *yss; +	struct yahoo_packet *pkt = NULL; +	char size_str[10]; +	char expire_str[10]; +	long content_length=0; +	unsigned char buff[1024]; +	char url[255]; +	struct send_file_data *sfd; + +	if(!yd) +		return; + +	yss = yd->server_settings; + +	yid = y_new0(struct yahoo_input_data, 1); +	yid->yd = yd; +	yid->type = YAHOO_CONNECTION_FT; + +	pkt = yahoo_packet_new(YAHOO_SERVICE_PICTURE_UPLOAD, YAHOO_STATUS_AVAILABLE, yd->session_id); + +	snprintf(size_str, sizeof(size_str), "%ld", size); +	snprintf(expire_str, sizeof(expire_str), "%ld", (long)604800); + +	yahoo_packet_hash(pkt, 0, yd->user); +	yahoo_packet_hash(pkt, 1, yd->user); +	yahoo_packet_hash(pkt, 14, ""); +	yahoo_packet_hash(pkt, 27, name); +	yahoo_packet_hash(pkt, 28, size_str); +	yahoo_packet_hash(pkt, 38, expire_str); +	 + +	content_length = YAHOO_PACKET_HDRLEN + yahoo_packet_length(pkt); + +	snprintf(url, sizeof(url), "http://%s:%d/notifyft", +				yss->filetransfer_host, yss->filetransfer_port); +	snprintf((char *)buff, sizeof(buff), "Y=%s; T=%s", +				 yd->cookie_y, yd->cookie_t); +	inputs = y_list_prepend(inputs, yid); + +	sfd = y_new0(struct send_file_data, 1); +	sfd->pkt = pkt; +	sfd->callback = callback; +	sfd->user_data = data; +	yahoo_http_post(yid->yd->client_id, url, (char *)buff, content_length+4+size, +						_yahoo_send_picture_connected, sfd); +} +  static void _yahoo_send_file_connected(int id, int fd, int error, void *data)  {  	struct yahoo_input_data *yid = find_input_by_id_and_type(id, YAHOO_CONNECTION_FT); diff --git a/protocols/yahoo/yahoo.c b/protocols/yahoo/yahoo.c index dec42bdc..6f6590df 100644 --- a/protocols/yahoo/yahoo.c +++ b/protocols/yahoo/yahoo.c @@ -66,7 +66,7 @@ struct byahoo_conf_invitation  static GSList *byahoo_inputs = NULL;  static int byahoo_chat_id = 0; -static char *byahoo_strip( char *in ) +static char *byahoo_strip( const char *in )  {  	int len; @@ -85,7 +85,7 @@ static char *byahoo_strip( char *in )  		}  		else if( strncmp( in, "\e[", 2 ) == 0 )  		{ -			char *s; +			const char *s;  			for( s = in + 2; *s && *s != 'm'; s ++ ); @@ -171,7 +171,7 @@ static int byahoo_send_im( struct im_connection *ic, char *who, char *what, int  {  	struct byahoo_data *yd = ic->proto_data; -	yahoo_send_im( yd->y2_id, NULL, who, what, 1 ); +	yahoo_send_im( yd->y2_id, NULL, who, what, 1, 0 );  	return 1;  } @@ -239,7 +239,7 @@ static void byahoo_set_away( struct im_connection *ic, char *state, char *msg )  	else  		yd->current_status = YAHOO_STATUS_AVAILABLE; -	yahoo_set_away( yd->y2_id, yd->current_status, msg, ic->away != NULL ); +	yahoo_set_away( yd->y2_id, yd->current_status, msg, ic->away != NULL ? 2 : 0 );  }  static GList *byahoo_away_states( struct im_connection *ic ) @@ -273,7 +273,7 @@ static void byahoo_add_buddy( struct im_connection *ic, char *who, char *group )  {  	struct byahoo_data *yd = (struct byahoo_data *) ic->proto_data; -	yahoo_add_buddy( yd->y2_id, who, group ? group : BYAHOO_DEFAULT_GROUP ); +	yahoo_add_buddy( yd->y2_id, who, group ? group : BYAHOO_DEFAULT_GROUP, NULL );  }  static void byahoo_remove_buddy( struct im_connection *ic, char *who, char *group ) @@ -450,7 +450,7 @@ gboolean byahoo_write_ready_callback( gpointer data, gint source, b_input_condit  	return FALSE;  } -void ext_yahoo_login_response( int id, int succ, char *url ) +void ext_yahoo_login_response( int id, int succ, const char *url )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	struct byahoo_data *yd = NULL; @@ -542,7 +542,7 @@ void ext_yahoo_got_cookies( int id )  {  } -void ext_yahoo_status_changed( int id, char *who, int stat, char *msg, int away ) +void ext_yahoo_status_changed( int id, const char *who, int stat, const char *msg, int away, int idle, int mobile )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	char *state_string = NULL; @@ -606,50 +606,52 @@ void ext_yahoo_status_changed( int id, char *who, int stat, char *msg, int away  	*/  } -void ext_yahoo_got_im( int id, char *who, char *msg, long tm, int stat, int utf8 ) +void ext_yahoo_got_im( int id, const char *me, const char *who, const char *msg, long tm, int stat, int utf8 )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	char *m = byahoo_strip( msg ); -	serv_got_im( ic, who, m, 0, 0, strlen( m ) ); +	serv_got_im( ic, (char*) who, (char*) m, 0, 0, strlen( m ) );  	g_free( m );  } -void ext_yahoo_got_file( int id, char *who, char *url, long expires, char *msg, char *fname, unsigned long fesize ) +void ext_yahoo_got_file( int id, +                         const char *ignored, +                         const char *who, const char *url, long expires, const char *msg, const char *fname, unsigned long fesize )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	imcb_log( ic, "Got a file transfer (file = %s) from %s. Ignoring for now due to lack of support.", fname, who );  } -void ext_yahoo_typing_notify( int id, char *who, int stat ) +void ext_yahoo_typing_notify( int id, const char *ignored, const char *who, int stat )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	if (stat == 1) {  		/* User is typing */ -		serv_got_typing( ic, who, 1, 1 ); +		serv_got_typing( ic, (char*) who, 1, 1 );  	}  	else {  		/* User stopped typing */ -		serv_got_typing( ic, who, 1, 0 ); +		serv_got_typing( ic, (char*) who, 1, 0 );  	}  } -void ext_yahoo_system_message( int id, char *msg ) +void ext_yahoo_system_message( int id, const char *msg )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	imcb_log( ic, "Yahoo! system message: %s", msg );  } -void ext_yahoo_webcam_invite( int id, char *from ) +void ext_yahoo_webcam_invite( int id, const char *ignored, const char *from )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	imcb_log( ic, "Got a webcam invitation from %s. IRC+webcams is a no-no though...", from );  } -void ext_yahoo_error( int id, char *err, int fatal ) +void ext_yahoo_error( int id, const char *err, int fatal, int num )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id ); @@ -718,7 +720,7 @@ void ext_yahoo_remove_handler( int id, int tag )  	b_event_remove( tag );  } -int ext_yahoo_connect_async( int id, char *host, int port, yahoo_connect_callback callback, void *data ) +int ext_yahoo_connect_async( int id, const char *host, int port, yahoo_connect_callback callback, void *data )  {  	struct byahoo_connect_callback_data *d;  	int fd; @@ -739,7 +741,7 @@ int ext_yahoo_connect_async( int id, char *host, int port, yahoo_connect_callbac  /* Because we don't want asynchronous connects in BitlBee, and because     libyahoo doesn't seem to use this one anyway, this one is now defunct. */ -int ext_yahoo_connect(char *host, int port) +int ext_yahoo_connect(const char *host, int port)  {  #if 0  	struct sockaddr_in serv_addr; @@ -795,7 +797,8 @@ static void byahoo_reject_conf( gpointer w, struct byahoo_conf_invitation *inv )  	g_free( inv );  } -void ext_yahoo_got_conf_invite( int id, char *who, char *room, char *msg, YList *members ) +void ext_yahoo_got_conf_invite( int id, const char *ignored, +                                const char *who, const char *room, const char *msg, YList *members )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	struct byahoo_conf_invitation *inv; @@ -805,7 +808,7 @@ void ext_yahoo_got_conf_invite( int id, char *who, char *room, char *msg, YList  	inv = g_malloc( sizeof( struct byahoo_conf_invitation ) );  	memset( inv, 0, sizeof( struct byahoo_conf_invitation ) );  	inv->name = g_strdup( room ); -	inv->c = serv_got_joined_chat( ic, room ); +	inv->c = serv_got_joined_chat( ic, (char*) room );  	inv->c->data = members;  	inv->yid = id;  	inv->members = members; @@ -820,14 +823,14 @@ void ext_yahoo_got_conf_invite( int id, char *who, char *room, char *msg, YList  	imcb_ask( ic, txt, inv, byahoo_accept_conf, byahoo_reject_conf );  } -void ext_yahoo_conf_userdecline( int id, char *who, char *room, char *msg ) +void ext_yahoo_conf_userdecline( int id, const char *ignored, const char *who, const char *room, const char *msg )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	imcb_log( ic, "Invite to chatroom %s rejected by %s: %s", room, who, msg );  } -void ext_yahoo_conf_userjoin( int id, char *who, char *room ) +void ext_yahoo_conf_userjoin( int id, const char *ignored, const char *who, const char *room )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	struct groupchat *c; @@ -835,10 +838,11 @@ void ext_yahoo_conf_userjoin( int id, char *who, char *room )  	for( c = ic->conversations; c && strcmp( c->title, room ) != 0; c = c->next );  	if( c ) -		add_chat_buddy( c, who ); +		add_chat_buddy( c, (char*) who );  } -void ext_yahoo_conf_userleave( int id, char *who, char *room ) +void ext_yahoo_conf_userleave( int id, const char *ignored, const char *who, const char *room ) +  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	struct groupchat *c; @@ -846,10 +850,10 @@ void ext_yahoo_conf_userleave( int id, char *who, char *room )  	for( c = ic->conversations; c && strcmp( c->title, room ) != 0; c = c->next );  	if( c ) -		remove_chat_buddy( c, who, "" ); +		remove_chat_buddy( c, (char*) who, "" );  } -void ext_yahoo_conf_message( int id, char *who, char *room, char *msg, int utf8 ) +void ext_yahoo_conf_message( int id, const char *ignored, const char *who, const char *room, const char *msg, int utf8 )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id );  	char *m = byahoo_strip( msg ); @@ -858,51 +862,55 @@ void ext_yahoo_conf_message( int id, char *who, char *room, char *msg, int utf8  	for( c = ic->conversations; c && strcmp( c->title, room ) != 0; c = c->next );  	if( c ) -		serv_got_chat_in( c, who, 0, m, 0 ); +		serv_got_chat_in( c, (char*) who, 0, (char*) m, 0 );  	g_free( m );  } -void ext_yahoo_chat_cat_xml( int id, char *xml ) +void ext_yahoo_chat_cat_xml( int id, const char *xml )  {  } -void ext_yahoo_chat_join( int id, char *room, char *topic, YList *members, int fd ) +void ext_yahoo_chat_join( int id, const char *who, const char *room, const char *topic, YList *members, int fd )  {  } -void ext_yahoo_chat_userjoin( int id, char *room, struct yahoo_chat_member *who ) +void ext_yahoo_chat_userjoin( int id, const char *me, const char *room, struct yahoo_chat_member *who )  { +	free(who->id); +	free(who->alias); +	free(who->location); +        free(who);  } -void ext_yahoo_chat_userleave( int id, char *room, char *who ) +void ext_yahoo_chat_userleave( int id, const char *me, const char *room, const char *who )  {  } -void ext_yahoo_chat_message( int id, char *who, char *room, char *msg, int msgtype, int utf8 ) +void ext_yahoo_chat_message( int id, const char *me, const char *who, const char *room, const char *msg, int msgtype, int utf8 )  {  } -void ext_yahoo_chat_yahoologout( int id ) +void ext_yahoo_chat_yahoologout( int id, const char *me )  {  } -void ext_yahoo_chat_yahooerror( int id ) +void ext_yahoo_chat_yahooerror( int id, const char *me )  {  } -void ext_yahoo_contact_added( int id, char *myid, char *who, char *msg ) +void ext_yahoo_contact_added( int id, const char *myid, const char *who, const char *msg )  {  } -void ext_yahoo_rejected( int id, char *who, char *msg ) +void ext_yahoo_rejected( int id, const char *who, const char *msg )  {  } -void ext_yahoo_game_notify( int id, char *who, int stat ) +void ext_yahoo_game_notify( int id, const char *me, const char *who, int stat )  {  } -void ext_yahoo_mail_notify( int id, char *from, char *subj, int cnt ) +void ext_yahoo_mail_notify( int id, const char *from, const char *subj, int cnt )  {  	struct im_connection *ic = byahoo_get_ic_by_id( id ); @@ -912,11 +920,11 @@ void ext_yahoo_mail_notify( int id, char *from, char *subj, int cnt )  		imcb_log( ic, "Received %d new e-mails", cnt );  } -void ext_yahoo_webcam_invite_reply( int id, char *from, int accept ) +void ext_yahoo_webcam_invite_reply( int id, const char *me, const char *from, int accept )  {  } -void ext_yahoo_webcam_closed( int id, char *who, int reason ) +void ext_yahoo_webcam_closed( int id, const char *who, int reason )  {  } @@ -924,7 +932,7 @@ void ext_yahoo_got_search_result( int id, int found, int start, int total, YList  {  } -void ext_yahoo_webcam_viewer( int id, char *who, int connect ) +void ext_yahoo_webcam_viewer( int id, const char *who, int connect )  {  } @@ -932,7 +940,7 @@ void ext_yahoo_webcam_data_request( int id, int send )  {  } -int ext_yahoo_log( char *fmt, ... ) +int ext_yahoo_log( const char *fmt, ... )  {  	return( 0 );  } @@ -940,3 +948,13 @@ int ext_yahoo_log( char *fmt, ... )  void ext_yahoo_got_webcam_image( int id, const char * who, const unsigned char *image, unsigned int image_size, unsigned int real_size, unsigned int timestamp )  {  } + +void ext_yahoo_got_ping( int id, const char *msg) +{ +} + +void ext_yahoo_got_buddyicon (int id, const char *me, const char *who, const char *url, int checksum) {} +void ext_yahoo_got_buddyicon_checksum (int id, const char *me,const char *who, int checksum) {} + +void ext_yahoo_got_buddyicon_request(int id, const char *me, const char *who){} +void ext_yahoo_buddyicon_uploaded(int id, const char *url){} diff --git a/protocols/yahoo/yahoo2.h b/protocols/yahoo/yahoo2.h index 5ac5e4f9..e54e09fb 100644 --- a/protocols/yahoo/yahoo2.h +++ b/protocols/yahoo/yahoo2.h @@ -119,7 +119,7 @@ void yahoo_chat_keepalive(int id);  /* from is the identity you're sending from.  if NULL, the default is used */  /* utf8 is whether msg is a utf8 string or not. */ -void yahoo_send_im(int id, const char *from, const char *who, const char *msg, int utf8); +void yahoo_send_im(int id, const char *from, const char *who, const char *msg, int utf8, int picture);  /* if type is true, send typing notice, else send stopped typing notice */  void yahoo_send_typing(int id, const char *from, const char *who, int typ); @@ -127,9 +127,10 @@ void yahoo_send_typing(int id, const char *from, const char *who, int typ);  /* away says whether the custom message is an away message or a sig */  void yahoo_set_away(int id, enum yahoo_status state, const char *msg, int away); -void yahoo_add_buddy(int id, const char *who, const char *group); +void yahoo_add_buddy(int id, const char *who, const char *group, const char *msg);  void yahoo_remove_buddy(int id, const char *who, const char *group);  void yahoo_reject_buddy(int id, const char *who, const char *msg); +void yahoo_stealth_buddy(int id, const char *who, int unstealth);  /* if unignore is true, unignore, else ignore */  void yahoo_ignore_buddy(int id, const char *who, int unignore);  void yahoo_change_buddy_group(int id, const char *who, const char *old_group, const char *new_group); @@ -213,6 +214,8 @@ const char  * yahoo_get_cookie(int id, const char *which);  /* You'll have to do urlencoding yourself, but see yahoo_httplib.h first */  const char  * yahoo_get_profile_url( void ); +void yahoo_buddyicon_request(int id, const char *who); +  #include "yahoo_httplib.h"  #ifdef __cplusplus diff --git a/protocols/yahoo/yahoo2_callbacks.h b/protocols/yahoo/yahoo2_callbacks.h index 1ab8a9d7..b7f4e99b 100644 --- a/protocols/yahoo/yahoo2_callbacks.h +++ b/protocols/yahoo/yahoo2_callbacks.h @@ -30,7 +30,6 @@   */ -  #ifndef YAHOO2_CALLBACKS_H  #define YAHOO2_CALLBACKS_H @@ -66,7 +65,6 @@ typedef enum {  typedef void (*yahoo_connect_callback)(int fd, int error, void *callback_data); -  /*   * The following functions need to be implemented in the client   * interface.  They will be called by the library when each @@ -95,9 +93,7 @@ struct yahoo_callbacks {   * 	succ - enum yahoo_login_status   * 	url  - url to reactivate account if locked   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_login_response)(int id, int succ, char *url); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_login_response)(int id, int succ, const char *url);  /* @@ -110,8 +106,6 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_login_response)(int id, int succ, char *url);  void YAHOO_CALLBACK_TYPE(ext_yahoo_got_buddies)(int id, YList * buds); - -  /*   * Name: ext_yahoo_got_ignore   * 	Called when the ignore list is got from the server @@ -122,9 +116,6 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_buddies)(int id, YList * buds);  void YAHOO_CALLBACK_TYPE(ext_yahoo_got_ignore)(int id, YList * igns); - - -  /*   * Name: ext_yahoo_got_identities   * 	Called when the contact list is got from the server @@ -135,9 +126,6 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_ignore)(int id, YList * igns);  void YAHOO_CALLBACK_TYPE(ext_yahoo_got_identities)(int id, YList * ids); - - -  /*   * Name: ext_yahoo_got_cookies   * 	Called when the cookie list is got from the server @@ -147,6 +135,14 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_identities)(int id, YList * ids);  void YAHOO_CALLBACK_TYPE(ext_yahoo_got_cookies)(int id); +/* + * Name: ext_yahoo_got_ping + * 	Called when the ping packet is received from the server + * Params: + * 	id   - the id that identifies the server connection + *  errormsg - optional error message + */ +void YAHOO_CALLBACK_TYPE(ext_yahoo_got_ping)(int id, const char *errormsg);  /* @@ -158,11 +154,11 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_cookies)(int id);   * 	stat - status code (enum yahoo_status)   * 	msg  - the message if stat == YAHOO_STATUS_CUSTOM   * 	away - whether the contact is away or not (YAHOO_STATUS_CUSTOM) - * 	       for YAHOO_STATUS_IDLE, this is the number of seconds he is idle + * 	idle - this is the number of seconds he is idle [if he is idle] + *	mobile - this is set for mobile users/buddies + *	TODO: add support for pager, chat, and game states   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_status_changed)(int id, char *who, int stat, char *msg, int away); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_status_changed)(int id, const char *who, int stat, const char *msg, int away, int idle, int mobile);  /* @@ -170,6 +166,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_status_changed)(int id, char *who, int stat,   * 	Called when remote user sends you a message.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity the message was sent to   * 	who  - the handle of the remote user   * 	msg  - the message - NULL if stat == 2   * 	tm   - timestamp of message if offline @@ -179,9 +176,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_status_changed)(int id, char *who, int stat,   * 				5   * 	utf8 - whether the message is encoded as utf8 or not   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_got_im)(int id, char *who, char *msg, long tm, int stat, int utf8); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_got_im)(int id, const char *me, const char *who, const char *msg, long tm, int stat, int utf8);  /* @@ -189,14 +184,13 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_im)(int id, char *who, char *msg, long tm   * 	Called when remote user sends you a conference invitation.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity the invitation was sent to   * 	who  - the user inviting you   * 	room - the room to join   * 	msg  - the message   *	members - the initial members of the conference (null terminated list)   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_got_conf_invite)(int id, char *who, char *room, char *msg, YList *members); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_got_conf_invite)(int id, const char *me, const char *who, const char *room, const char *msg, YList *members);  /* @@ -204,13 +198,12 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_conf_invite)(int id, char *who, char *roo   * 	Called when someone declines to join the conference.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity in the conference   * 	who  - the user who has declined   * 	room - the room   * 	msg  - the declining message   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userdecline)(int id, char *who, char *room, char *msg); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userdecline)(int id, const char *me, const char *who, const char *room, const char *msg);  /* @@ -218,12 +211,11 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userdecline)(int id, char *who, char *ro   * 	Called when someone joins the conference.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity in the conference   * 	who  - the user who has joined   * 	room - the room joined   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userjoin)(int id, char *who, char *room); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userjoin)(int id, const char *me, const char *who, const char *room);  /* @@ -231,33 +223,21 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userjoin)(int id, char *who, char *room)   * 	Called when someone leaves the conference.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity in the conference   * 	who  - the user who has left   * 	room - the room left   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userleave)(int id, char *who, char *room); - - - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_userleave)(int id, const char *me, const char *who, const char *room);  /*   * Name: ext_yahoo_chat_cat_xml - * 	Called when joining the chatroom. + * 	Called when ?   * Params:   * 	id      - the id that identifies the server connection - * 	room    - the room joined, used in all other chat calls, freed by  - * 	          library after call - * 	topic   - the topic of the room, freed by library after call - *	members - the initial members of the chatroom (null terminated YList of  - *	          yahoo_chat_member's) Must be freed by the client + * 	xml     - ?   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_cat_xml)(int id, char *xml); - - - - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_cat_xml)(int id, const char *xml);  /* @@ -265,6 +245,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_cat_xml)(int id, char *xml);   * 	Called when joining the chatroom.   * Params:   * 	id      - the id that identifies the server connection + * 	me   - the identity in the chatroom   * 	room    - the room joined, used in all other chat calls, freed by    * 	          library after call   * 	topic   - the topic of the room, freed by library after call @@ -272,11 +253,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_cat_xml)(int id, char *xml);   *	          of yahoo_chat_member's) Must be freed by the client   *	fd	- the socket where the connection is coming from (for tracking)   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_join)(int id, char *room, char *topic, YList *members, int fd); - - - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_join)(int id, const char *me, const char *room, const char *topic, YList *members, int fd);  /* @@ -284,12 +261,11 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_join)(int id, char *room, char *topic, Y   * 	Called when someone joins the chatroom.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity in the chatroom   * 	room - the room joined   * 	who  - the user who has joined, Must be freed by the client   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_userjoin)(int id, char *room, struct yahoo_chat_member *who); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_userjoin)(int id, const char *me, const char *room, struct yahoo_chat_member *who);  /* @@ -297,12 +273,11 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_userjoin)(int id, char *room, struct yah   * 	Called when someone leaves the chatroom.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity in the chatroom   * 	room - the room left   * 	who  - the user who has left (Just the User ID)   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_userleave)(int id, char *room, char *who); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_userleave)(int id, const char *me, const char *room, const char *who);  /* @@ -310,6 +285,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_userleave)(int id, char *room, char *who   * 	Called when someone messages in the chatroom.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity in the chatroom   * 	room - the room   * 	who  - the user who messaged (Just the user id)   * 	msg  - the message @@ -317,7 +293,8 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_userleave)(int id, char *room, char *who   * 		   2 = /me type message   * 	utf8 - whether the message is utf8 encoded or not   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_message)(int id, char *who, char *room, char *msg, int msgtype, int utf8); +void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_message)(int id, const char *me, const char *who, const char *room, const char *msg, int msgtype, int utf8); +  /*   * @@ -328,10 +305,12 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_message)(int id, char *who, char *room,   *	of the disconnect request before doing anything here (auto-join's etc)   * Params:   *	id   - the id that identifies this connection + * 	me   - the identity in the chatroom   * Returns:   *	nothing.   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_yahoologout)(int id); +void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_yahoologout)(int id, const char *me); +  /*   * @@ -343,25 +322,25 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_yahoologout)(int id);   *	of the error before doing anything about it.   * Params:   *	id   - the id that identifies this connection + * 	me   - the identity in the chatroom   * Returns:   *	nothing.   */ +void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_yahooerror)(int id, const char *me); -void YAHOO_CALLBACK_TYPE(ext_yahoo_chat_yahooerror)(int id);  /*   * Name: ext_yahoo_conf_message   * 	Called when someone messages in the conference.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity the conf message was sent to   * 	who  - the user who messaged   * 	room - the room   * 	msg  - the message   * 	utf8 - whether the message is utf8 encoded or not   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_message)(int id, char *who, char *room, char *msg, int utf8); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_message)(int id, const char *me, const char *who, const char *room, const char *msg, int utf8);  /* @@ -369,6 +348,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_message)(int id, char *who, char *room,   * 	Called when someone sends you a file   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the identity the file was sent to   * 	who  - the user who sent the file   * 	url  - the file url   * 	expires  - the expiry date of the file on the server (timestamp) @@ -376,9 +356,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_conf_message)(int id, char *who, char *room,   * 	fname- the file name if direct transfer   * 	fsize- the file size if direct transfer   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_got_file)(int id, char *who, char *url, long expires, char *msg, char *fname, unsigned long fesize); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_got_file)(int id, const char *me, const char *who, const char *url, long expires, const char *msg, const char *fname, unsigned long fesize);  /* @@ -390,9 +368,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_file)(int id, char *who, char *url, long   * 	who  - who was added   * 	msg  - any message sent   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_contact_added)(int id, char *myid, char *who, char *msg); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_contact_added)(int id, const char *myid, const char *who, const char *msg);  /* @@ -403,9 +379,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_contact_added)(int id, char *myid, char *who,   * 	who  - who rejected you   * 	msg  - any message sent   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_rejected)(int id, char *who, char *msg); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_rejected)(int id, const char *who, const char *msg);  /* @@ -413,12 +387,11 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_rejected)(int id, char *who, char *msg);   * 	Called when remote user starts or stops typing.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the handle of the identity the notification is sent to   * 	who  - the handle of the remote user   * 	stat - 1 if typing, 0 if stopped typing   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_typing_notify)(int id, char *who, int stat); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_typing_notify)(int id, const char *me, const char *who, int stat);  /* @@ -426,12 +399,11 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_typing_notify)(int id, char *who, int stat);   * 	Called when remote user starts or stops a game.   * Params:   * 	id   - the id that identifies the server connection + * 	me   - the handle of the identity the notification is sent to   * 	who  - the handle of the remote user   * 	stat - 1 if game, 0 if stopped gaming   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_game_notify)(int id, char *who, int stat); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_game_notify)(int id, const char *me, const char *who, int stat);  /* @@ -443,9 +415,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_game_notify)(int id, char *who, int stat);   * 	subj - the subject of the mail - NULL if only mail count   * 	cnt  - mail count - 0 if new mail notification   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_mail_notify)(int id, char *from, char *subj, int cnt); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_mail_notify)(int id, const char *from, const char *subj, int cnt);  /* @@ -455,17 +425,49 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_mail_notify)(int id, char *from, char *subj,   * 	id   - the id that identifies the server connection   * 	msg  - the message   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_system_message)(int id, char *msg); - - - - - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_system_message)(int id, const char *msg); +/* + * Name: ext_yahoo_got_buddyicon + * 	Buddy icon received + * Params: + * 	id - the id that identifies the server connection + * 	me - the handle of the identity the notification is sent to + * 	who - the person the buddy icon is for + * 	url - the url to use to load the icon + * 	checksum - the checksum of the icon content + */ +void YAHOO_CALLBACK_TYPE(ext_yahoo_got_buddyicon)(int id, const char *me, const char *who, const char *url, int checksum); +/* + * Name: ext_yahoo_got_buddyicon_checksum + * 	Buddy icon checksum received + * Params: + * 	id - the id that identifies the server connection + * 	me - the handle of the identity the notification is sent to + * 	who - the yahoo id of the buddy icon checksum is for + * 	checksum - the checksum of the icon content + */ +void YAHOO_CALLBACK_TYPE(ext_yahoo_got_buddyicon_checksum)(int id, const char *me,const char *who, int checksum); +/* + * Name: ext_yahoo_got_buddyicon_request + * 	Buddy icon request received + * Params: + * 	id - the id that identifies the server connection + * 	me - the handle of the identity the notification is sent to + * 	who - the yahoo id of the buddy that requested the buddy icon + */ +void YAHOO_CALLBACK_TYPE(ext_yahoo_got_buddyicon_request)(int id, const char *me, const char *who); +/* + * Name: ext_yahoo_got_buddyicon_request + * 	Buddy icon request received + * Params: + * 	id - the id that identifies the server connection + * 	url - remote url, the uploaded buddy icon can be fetched from + */ +void YAHOO_CALLBACK_TYPE(ext_yahoo_buddyicon_uploaded)(int id, const char *url);  /*   * Name: ext_yahoo_got_webcam_image @@ -495,18 +497,15 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_webcam_image)(int id, const char * who,  		unsigned int timestamp); - -  /*   * Name: ext_yahoo_webcam_invite   * 	Called when you get a webcam invitation   * Params:   * 	id   - the id that identifies the server connection + * 	me   - identity the invitation is to   * 	from - who the invitation is from   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_invite)(int id, char *from); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_invite)(int id, const char *me, const char *from);  /* @@ -514,11 +513,11 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_invite)(int id, char *from);   * 	Called when you get a response to a webcam invitation   * Params:   * 	id   - the id that identifies the server connection + * 	me   - identity the invitation response is to   * 	from - who the invitation response is from   *	accept - 0 (decline), 1 (accept)   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_invite_reply)(int id, char *from, int accept); - +void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_invite_reply)(int id, const char *me, const char *from, int accept);  /* @@ -533,7 +532,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_invite_reply)(int id, char *from, int   *	         3 = user declines permission   *	         4 = user does not have webcam online   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_closed)(int id, char *who, int reason); +void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_closed)(int id, const char *who, int reason);  /* @@ -551,7 +550,6 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_closed)(int id, char *who, int reason)  void YAHOO_CALLBACK_TYPE(ext_yahoo_got_search_result)(int id, int found, int start, int total, YList *contacts); -  /*   * Name: ext_yahoo_error   * 	Called on error. @@ -559,10 +557,9 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_got_search_result)(int id, int found, int sta   * 	id   - the id that identifies the server connection   * 	err  - the error message   * 	fatal- whether this error is fatal to the connection or not + * 	num  - Which error is this   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_error)(int id, char *err, int fatal); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_error)(int id, const char *err, int fatal, int num);  /* @@ -573,9 +570,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_error)(int id, char *err, int fatal);   *	who - the viewer   *	connect - 0=disconnect 1=connect 2=request   */ -void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_viewer)(int id, char *who, int connect); - - +void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_viewer)(int id, const char *who, int connect);  /* @@ -588,8 +583,6 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_viewer)(int id, char *who, int connect  void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_data_request)(int id, int send); - -  /*   * Name: ext_yahoo_log   * 	Called to log a message. @@ -598,13 +591,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_webcam_data_request)(int id, int send);   * Returns:   * 	0   */ -int YAHOO_CALLBACK_TYPE(ext_yahoo_log)(char *fmt, ...); - - - - - - +int YAHOO_CALLBACK_TYPE(ext_yahoo_log)(const char *fmt, ...);  /* @@ -623,8 +610,6 @@ int YAHOO_CALLBACK_TYPE(ext_yahoo_log)(char *fmt, ...);  int YAHOO_CALLBACK_TYPE(ext_yahoo_add_handler)(int id, int fd, yahoo_input_condition cond, void *data); - -  /*   * Name: ext_yahoo_remove_handler   * 	Remove the listener for the fd. @@ -635,9 +620,6 @@ int YAHOO_CALLBACK_TYPE(ext_yahoo_add_handler)(int id, int fd, yahoo_input_condi  void YAHOO_CALLBACK_TYPE(ext_yahoo_remove_handler)(int id, int tag); - - -  /*   * Name: ext_yahoo_connect   * 	Connect to a host:port @@ -647,13 +629,7 @@ void YAHOO_CALLBACK_TYPE(ext_yahoo_remove_handler)(int id, int tag);   * Returns:   * 	a unix file descriptor to the socket   */ -int YAHOO_CALLBACK_TYPE(ext_yahoo_connect)(char *host, int port); - - - - - - +int YAHOO_CALLBACK_TYPE(ext_yahoo_connect)(const char *host, int port);  /* @@ -674,7 +650,7 @@ int YAHOO_CALLBACK_TYPE(ext_yahoo_connect)(char *host, int port);   * Returns:   * 	a unix file descriptor to the socket   */ -int YAHOO_CALLBACK_TYPE(ext_yahoo_connect_async)(int id, char *host, int port,  +int YAHOO_CALLBACK_TYPE(ext_yahoo_connect_async)(int id, const char *host, int port,   		yahoo_connect_callback callback, void *callback_data);  #ifdef USE_STRUCT_CALLBACKS @@ -685,7 +661,7 @@ int YAHOO_CALLBACK_TYPE(ext_yahoo_connect_async)(int id, char *host, int port,   * before doing anything else   */  void yahoo_register_callbacks(struct yahoo_callbacks * tyc); -	 +  #undef YAHOO_CALLBACK_TYPE  #endif @@ -695,3 +671,4 @@ void yahoo_register_callbacks(struct yahoo_callbacks * tyc);  #endif  #endif + diff --git a/protocols/yahoo/yahoo2_types.h b/protocols/yahoo/yahoo2_types.h index 1a92b267..df1756eb 100644 --- a/protocols/yahoo/yahoo2_types.h +++ b/protocols/yahoo/yahoo2_types.h @@ -29,6 +29,7 @@ extern "C" {  #endif  enum yahoo_status { +	YAHOO_STATUS_DISCONNECTED = -1,  	YAHOO_STATUS_AVAILABLE = 0,  	YAHOO_STATUS_BRB,  	YAHOO_STATUS_BUSY, @@ -42,13 +43,15 @@ enum yahoo_status {  	YAHOO_STATUS_INVISIBLE = 12,  	YAHOO_STATUS_CUSTOM = 99,  	YAHOO_STATUS_IDLE = 999, +	YAHOO_STATUS_WEBLOGIN = 0x5a55aa55,  	YAHOO_STATUS_OFFLINE = 0x5a55aa56, /* don't ask */ -	YAHOO_STATUS_NOTIFY = 0x16 +	YAHOO_STATUS_NOTIFY = 0x16 /* TYPING */  };  #define YAHOO_STATUS_GAME	0x2 		/* Games don't fit into the regular status model */  enum yahoo_login_status {  	YAHOO_LOGIN_OK = 0, +	YAHOO_LOGIN_LOGOFF = 2,  	YAHOO_LOGIN_UNAME = 3,  	YAHOO_LOGIN_PASSWD = 13,  	YAHOO_LOGIN_LOCK = 14, @@ -57,6 +60,9 @@ enum yahoo_login_status {  };  enum yahoo_error { +	E_UNKNOWN = -1, +	E_CONNECTION = -2, +	E_SYSTEM = -3,  	E_CUSTOM = 0,  	/* responses from ignore buddy */ @@ -78,6 +84,7 @@ enum yahoo_log_level {  	YAHOO_LOG_DEBUG  }; +#define YAHOO_PROTO_VER 0x000b  /* Yahoo style/color directives */  #define YAHOO_COLOR_BLACK "\033[30m" @@ -115,6 +122,12 @@ enum yahoo_webcam_direction_type {          YAHOO_WEBCAM_UPLOAD  }; +enum yahoo_stealth_visibility_type { +	YAHOO_STEALTH_DEFAULT = 0, +  	YAHOO_STEALTH_ONLINE, +  	YAHOO_STEALTH_PERM_OFFLINE +}; +  /* chat member attribs */  #define YAHOO_CHAT_MALE 0x8000  #define YAHOO_CHAT_FEMALE 0x10000 diff --git a/protocols/yahoo/yahoo_util.c b/protocols/yahoo/yahoo_util.c index 7babfa49..5375205f 100644 --- a/protocols/yahoo/yahoo_util.c +++ b/protocols/yahoo/yahoo_util.c @@ -68,13 +68,15 @@ char ** y_strsplit(char * str, char * sep, int nelem)  	char *s, *p;  	int i=0;  	int l = strlen(sep); -	if(nelem < 0) { +	if(nelem <= 0) {  		char * s;  		nelem=0; -		for(s=strstr(str, sep); s; s=strstr(s+l, sep),nelem++) -			; -		if(strcmp(str+strlen(str)-l, sep)) -			nelem++; +		if (*str) { +			for(s=strstr(str, sep); s; s=strstr(s+l, sep),nelem++) +				; +			if(strcmp(str+strlen(str)-l, sep)) +				nelem++; +		}  	}  	vector = y_new(char *, nelem + 1); @@ -86,7 +88,7 @@ char ** y_strsplit(char * str, char * sep, int nelem)  		vector[i][len] = '\0';  	} -	if(i<nelem) /* str didn't end with sep */ +	if(i<nelem && *str) /* str didn't end with sep, and str isn't empty */  		vector[i++] = strdup(p);  	vector[i] = NULL; | 
