aboutsummaryrefslogtreecommitdiffstats
path: root/protocols
Commit message (Collapse)AuthorAgeLines
* This works (includes some token sabotage code to ease testing), but I justWilmer van der Gaast2010-09-04-14/+54
| | | | | realised there's probably no need for the additional temporary NS connection.
* Rearrange things a bit to support multiple NS connections. This is apparentlyWilmer van der Gaast2010-09-03-93/+105
| | | | | needed for refreshing auth. tokens.
* Replace msn*write functions with saner versions that accept format strings.Wilmer van der Gaast2010-09-02-106/+87
| | | | | Also preparing for additional temporary NS connections (auth token renewal).
* Handle payloads attached to errors (assume any number in cmd[2] would beWilmer van der Gaast2010-08-29-1/+5
| | | | | | a payload length, which seems like a fair assumption). This should solve problems with logging in with dodgy contact/membership lists.
* Pull in Makefile dependencies fix from mainline.Wilmer van der Gaast2010-08-28-1/+20
|\
| * Use nifty gcc -MD feature to automatically track .h dependencies of all CWilmer van der Gaast2010-08-27-2/+19
| | | | | | | | | | | | | | | | | | | | files, this finally gives proper dependencies, which means the end of getting broken binaries around headerfile changes, etc. Sure, this may not work on obscurux with superawesomeincompatiblecc while autoconf does, but at least BitlBee's configure script still runs in <1s. :-)
* | Don't treat error 241 as fatal since it isn't - or at least not always.Wilmer van der Gaast2010-08-28-1/+1
| |
* | Merging mainline.Wilmer van der Gaast2010-08-24-9/+44
|\|
| * Fix two compiler warnings.Wilmer van der Gaast2010-08-22-2/+2
| |
| * Process incoming XMPP groupchat invites in a saner way: Create a temporaryWilmer van der Gaast2010-08-23-7/+19
| | | | | | | | | | channel the user can easily /join.
| * Better handling of yahoo add responses: libyahoo2 seems to (IMHO) wronglyWilmer van der Gaast2010-08-22-0/+19
| | | | | | | | | | | | assume that a non-0 status means the contact is on the list already and on-line. This causes ugly "imcb_buddy_status() for unknown handle" msgs.
| * Fixed a misuse of xt_find_node() that could get into an infinite loop.Wilmer van der Gaast2010-08-22-0/+4
| |
* | Ignore empty status messages, and msnmsgrp2p invitations.Wilmer van der Gaast2010-08-22-3/+3
| |
* | Also pick up MSN Messenger mobile info.Wilmer van der Gaast2010-08-22-2/+5
| |
* | Merge mainline.Wilmer van der Gaast2010-08-21-13/+58
|\|
| * Pick up away info from Yahoo! too.Wilmer van der Gaast2010-08-21-0/+2
| |
| * Pass "user is mobile" info coming from OSCAR up to BitlBee and show mobileWilmer van der Gaast2010-08-21-0/+15
| | | | | | | | | | people as away=Mobile. Bug #462 (and others for other protocols).
| * libpurple: Fix typing notifications (in and out). Closes #671.Wilmer van der Gaast2010-08-20-13/+41
| |
* | Some general cleanup, plus fixing a bug in the memberlist parsing code:Wilmer van der Gaast2010-08-21-7/+12
| | | | | | | | | | | | the lists can come in in any order, so parse it *completely* before showing auth requests.
* | Check if a connection is down before handling its SOAP responses.Wilmer van der Gaast2010-08-20-0/+10
| |
* | In debugging mode, dump all SOAP requests + responses with some indentationWilmer van der Gaast2010-08-20-0/+27
| | | | | | | | | | for easier debugging.
* | Fetch the user's profile to see if there's a display name set there. IfWilmer van der Gaast2010-08-18-24/+163
| | | | | | | | | | | | there is, the one in the address book should be ignored. No support for changing the profile yet though.
* | Making display name code a bit saner. Apparently PoS MSN is still sufferingWilmer van der Gaast2010-08-15-30/+30
| | | | | | | | | | from display_name amnesia a little bit though at least with Hotmail accounts.
* | Check the <isMessengerUser/> flag in address book entries, ignore the onesWilmer van der Gaast2010-08-15-2/+4
| | | | | | | | | | | | that have it set to false, or this code will add all non-Messenger contacts to the contact list (oops).
* | Removing soap.h dependency in Makefile. I'll have to fix the internalWilmer van der Gaast2010-08-15-2/+0
| | | | | | | | | | | | dependencies for real some day soon, but this one-off hack is breaking out-of-tree builds.
* | Parse authentication errors.Wilmer van der Gaast2010-08-15-3/+34
| |
* | The ADL command doesn't support >150 contacts. Split it up.Wilmer van der Gaast2010-08-15-28/+66
| |
* | Read group info.Wilmer van der Gaast2010-08-15-8/+67
| |
* | Fix issues with logging in with huge SSO tickets (hilariously, the 1024-Wilmer van der Gaast2010-08-15-12/+9
| | | | | | | | | | | | byte buffer was just one byte too short, resulting in a \r-terminated login line and the server waiting for the \n). Also using xt_find_path().
* | Add/Remove support.Wilmer van der Gaast2010-08-14-5/+135
| |
* | Separate boilerplate and body of abservice SOAP requests since the former'sWilmer van der Gaast2010-08-14-64/+39
| | | | | | | | | | the same all the time (and I have to add some more request types).
* | Responses to add requests work now.Wilmer van der Gaast2010-08-14-23/+198
| |
* | Show incoming auth. requests (although responding to them currently causesWilmer van der Gaast2010-08-14-53/+85
| | | | | | | | | | a disconnect).
* | Merge mainline stuff.Wilmer van der Gaast2010-08-14-6/+21
|\|
| * Don't send a /QUIT for every Twitter contact when going offline, and showWilmer van der Gaast2010-08-14-1/+1
| | | | | | | | | | the twitter_$username /QUIT as a netsplit.
| * strptime() on FreeBSD (and possibly other non-glibc platforms) %z is notWilmer van der Gaast2010-08-11-1/+6
| | | | | | | | | | | | supported, so just insert the literal timezone there - let's hope Twitter won't ever change that.
| * Small bug in the previous change: NULL-initialize srv.Wilmer van der Gaast2010-08-11-1/+1
| |
| * When doing SRV lookups, return an array with all RRs instead of just theWilmer van der Gaast2010-08-10-4/+14
| | | | | | | | | | | | first one. The first isn't always the best one and this is currently causing GTalk issues when talk2.l.google.com (which is currently dead) is first.
* | The contact's full name is in a different field now in NLN messages.Wilmer van der Gaast2010-08-14-2/+2
| |
* | Allow changing the display_name, now permanently!Wilmer van der Gaast2010-08-14-140/+96
| |
* | Read incoming MSN status/away messages.Wilmer van der Gaast2010-08-14-22/+76
| |
* | Status/Away messages.Wilmer van der Gaast2010-08-14-4/+14
| |
* | Allow Passport authentication with @msn.com accounts.Wilmer van der Gaast2010-08-14-1/+5
| |
* | Remove some old Passport stuff, this is all in soap.[ch] now.Wilmer van der Gaast2010-08-14-320/+39
| |
* | Sending offline messages works now ... but Pidgin doesn't seem to receive ↵Wilmer van der Gaast2010-08-13-13/+31
| | | | | | | | them. :-/
* | Some syntax checking fixups; don't make the same mistake of failing just ifWilmer van der Gaast2010-08-12-17/+11
| | | | | | | | | | | | the MSN server is sending a little bit *more* info. And adding xt_insert_node() used in the ADL generation code.
* | Proper responses to CHL challenges. Clean up bee_users before callingWilmer van der Gaast2010-08-12-26/+30
| | | | | | | | | | | | prpl->logout() since the buddy_data functions would like some structs to still exist.
* | Successful login (including contact list sync). \o/Wilmer van der Gaast2010-08-12-101/+125
| |
* | Get contact list/address book info. Next step: We have to send it back.Wilmer van der Gaast2010-08-12-13/+202
| | | | | | | | | | Seriously. Wish I were joking.
* | Implement MSNP15 SSO (Sadistic Sign-On).Wilmer van der Gaast2010-08-11-64/+269
| |