about summary refs log tree commit diff stats
path: root/src/xmpp
Commit message (Collapse)AuthorAgeFilesLines
* Add message and presence error handlers seperatelyJames Booth2014-01-254-11/+3
|
* Renamed iq handlersJames Booth2014-01-251-24/+29
|
* Renamed _room_presence_handler -> _muc_user_handlerJames Booth2014-01-251-4/+3
|
* Renamed xmpp roster handlersJames Booth2014-01-251-6/+6
|
* Split xmpp message handlers by namespaceJames Booth2014-01-251-44/+73
|
* Renamed namespace variablesJames Booth2014-01-251-9/+9
|
* Don't show error for initial bookmarks requestJames Booth2014-01-252-6/+12
|
* Fixed test compilationJames Booth2014-01-182-2/+2
|
* WIP - Adding port to account optionsJames Booth2014-01-182-9/+15
|
* Refactored roster add/updateJames Booth2014-01-051-2/+10
|
* Moved roster handlers to server_eventsJames Booth2014-01-051-3/+4
|
* Moved presence handlers to server_eventsJames Booth2014-01-051-13/+14
|
* Moved messages handlers to server_eventsJames Booth2014-01-051-14/+15
|
* Moved handle_room_list and handle_disco_items to server_eventsJames Booth2014-01-051-2/+2
|
* Moved handle_disco_info to server_eventsJames Booth2014-01-051-1/+1
|
* Moved handle_software_version_result to server_eventsJames Booth2014-01-051-1/+2
|
* Moved handle_lost_connection and handle_failed_login to server_eventsJames Booth2014-01-051-2/+2
|
* Moved handle_login_account_success to server_eventsJames Booth2014-01-051-2/+2
|
* Added server_events.cJames Booth2014-01-051-2/+3
|
* Renamed roster_add_new -> roster_send_add_newJames Booth2014-01-053-6/+3
|
* Fixed types of presence variables to resource_presence_type (avoid useless ↵Jasper van Bourgognie2013-12-272-3/+3
| | | | and implicit casts)
* Bind roster functions in main.cJames Booth2013-12-222-6/+12
|
* Bind presence functions in main.cJames Booth2013-12-222-11/+16
|
* Bind message functions in main.cJames Booth2013-12-222-9/+14
|
* Bind iq functions in main.cJames Booth2013-12-222-4/+10
|
* Bind capabilities functions in main.cJames Booth2013-12-222-2/+8
|
* Bind bookmark functions in main.cJames Booth2013-12-222-5/+11
|
* Bind jabber functions in main.cJames Booth2013-12-222-14/+19
|
* Dynamically bind xmpp module apiJames Booth2013-12-188-143/+194
|
* Added simple mock test, refactored rosterJames Booth2013-12-1412-523/+87
|
* Fixed compile error for -Wduplicate-decl-specifier on OSXJames Booth2013-11-102-2/+2
|
* Use passwords from the accounts fileTomás Senart2013-10-142-7/+5
| | | | | | This commit makes it so that if the password in an account in the accounts file is present, then use it. Otherwise ask for the password to the user.
* Fixe rejoining room after nickname conflictJames Booth2013-09-221-4/+6
| | | | fixes #241
* Add error handler only onceJames Booth2013-09-223-2/+1
| | | | fixes #240
* Use git revision in development stringsJames Booth2013-09-172-0/+22
|
* Merge remote-tracking branch 'dmitry/fixes'James Booth2013-08-261-1/+1
|\
| * fixed crash because of incorrect string releasingDmitry Podgorny2013-08-261-1/+1
| |
* | removed strdup in autocomplete callsDmitry Podgorny2013-08-263-9/+9
| |
* | remove octet_compareDmitry Podgorny2013-08-262-5/+5
|/ | | | strcmp provides the same functionality
* fixed memory leaks in various filesDmitry Podgorny2013-08-254-9/+17
|
* removed strdup from g_string_appendDmitry Podgorny2013-08-251-1/+1
|
* fixed indentingDmitry Podgorny2013-08-241-1/+1
|
* fixed memleak in _iq_handle_discoinfo_getDmitry Podgorny2013-08-241-0/+1
|
* Merge branch 'master' into nextdevJames Booth2013-08-052-4/+36
|\
| * Free JidJames Booth2013-08-051-0/+1
| |
| * Undo change to stanza check for nick change return valueJames Booth2013-08-053-28/+12
| |
| * Refactor MUC self presence checksJames Booth2013-08-051-12/+18
| |
| * Handle when servers dont send status 101 or jid for MUC nick changesJames Booth2013-08-053-14/+55
| |
* | fixed memory leaksDmitry Podgorny2013-08-034-36/+82
| | | | | | | | Also avoided several NULL pointer dereferences.
* | most FREE_SET_NULL replaced with freeDmitry Podgorny2013-08-033-24/+27
| | | | | | | | | | | | FREE_SET_NULL makes extra assignment of NULL for pointers in stack or dynamic memory that is going to be freed. FREE_SET_NULL is useful for pointers that can be used in future.