about summary refs log tree commit diff stats
path: root/src/jabber.c
Commit message (Collapse)AuthorAgeFilesLines
* Removed jid_is_room()James Booth2013-01-131-1/+1
|
* Use Jid in groupchat message handlerJames Booth2013-01-131-11/+7
|
* Use Jid datatype in chat roomsJames Booth2013-01-131-84/+85
|
* Moved FREE_SET_NULL to common.hJames Booth2013-01-131-8/+0
|
* Merge pull request #132 from pasis/nextJames Booth2013-01-121-89/+60
|\ | | | | Some code refactoring in jabber.c
| * check account->name == NULLDmitry Podgorny2013-01-131-0/+4
| |
| * fixed resources releaseDmitry Podgorny2013-01-131-6/+9
| | | | | | | | | | * Use free instead of g_free as resources are allocated with strdup * Fixed memory leaks
| * don't release room and nick when parsing failedDmitry Podgorny2013-01-131-3/+0
| |
| * room_jid should be (char *)Dmitry Podgorny2013-01-121-1/+1
| |
| * refactored jabber_set_autoping()Dmitry Podgorny2013-01-121-3/+1
| |
| * added JABBER_PRIORITY_* macrosDmitry Podgorny2013-01-121-1/+1
| |
| * fixed memory leak in jabber_subscription()Dmitry Podgorny2013-01-121-1/+3
| |
| * set NULL only when resource != NULL in FREE_SET_NULLDmitry Podgorny2013-01-121-3/+4
| |
| * refactored jabber_connect functionsDmitry Podgorny2013-01-121-70/+38
| | | | | | | | | | | | * similar code moved to jabber_connect() * variables saved_* moved to a structure saved_user * 'user' renamed to 'jid'
| * jabber.c: use FREE_SET_NULL macroDmitry Podgorny2013-01-121-3/+1
| |
* | Added jid datatypeJames Booth2013-01-121-0/+1
|/
* Moved jid related functions to commonJames Booth2013-01-121-7/+7
|
* Renamed muc functionsJames Booth2013-01-121-17/+17
|
* Renamed room_chat module to mucJames Booth2013-01-121-1/+1
|
* Updated copyrightJames Booth2013-01-111-1/+1
|
* added resources release to connetion handlerDmitry Podgorny2013-01-071-1/+6
|
* jabber.c: removed xmpp_stop callsDmitry Podgorny2013-01-071-2/+0
| | | | xmpp_stop() stops event loop xmpp_run() that profanity doesn't start.
* jabber.c: set jabber status in one place in connection handlerDmitry Podgorny2013-01-071-15/+8
|
* free resources when login attempt failsDmitry Podgorny2013-01-071-9/+1
| | | | The next call of jabber_connect allocates these resources again.
* jabber.c: removed extra resources releaseDmitry Podgorny2013-01-071-8/+0
| | | | These resources are released in jabber_free_resources().
* jabber.c: added assert before reconnect_timer allocationDmitry Podgorny2013-01-071-0/+2
| | | | | Development build will be terminated if reconnect_timer was allocated previously and wasn't destroyed.
* free saved login information in jabber_free_resources()Dmitry Podgorny2013-01-071-2/+11
|
* jabber.c: removed explicit type conversionDmitry Podgorny2013-01-071-1/+1
| | | | | According to the C99 standard integer type will be converted to real floating type before the comparison.
* Fixed compile errorJames Booth2012-12-101-1/+1
|
* Added autocomplete for enabled logins onlyJames Booth2012-12-101-0/+5
|
* Handle logins using accountsJames Booth2012-12-091-2/+48
|
* Handle idle time from contactsJames Booth2012-12-091-1/+13
|
* Added server property to accountsJames Booth2012-12-071-1/+1
|
* Add optional server parameter to /connect commandJames Booth2012-12-061-3/+9
|
* Implemented /autoaway mode idleJames Booth2012-12-011-2/+14
|
* Respond to ping requestsJames Booth2012-11-291-33/+66
|
* Remove from outstanding requests on /subJames Booth2012-11-281-0/+1
|
* Merge branch 'master' into sublistJames Booth2012-11-281-0/+5
|\
| * Add and remove from roster on subscription presenceJames Booth2012-11-281-0/+5
| |
* | List commands for /subJames Booth2012-11-281-0/+14
|/
* Handle roster subscription updatesJames Booth2012-11-271-1/+63
|
* Show "request pending" in /sub show, when request has been sentJames Booth2012-11-271-1/+9
|
* Added /autoping command to set ping interval or disable with 0James Booth2012-11-261-3/+21
|
* Fixed spelling in reconnectJames Booth2012-11-261-1/+1
|
* Setting /reconnect 0 properly disables reconnectJames Booth2012-11-261-10/+18
|
* Added auto reconnect, and /reconnect command to control intervalJames Booth2012-11-251-8/+64
|
* Send presence changes to chat roomsJames Booth2012-11-201-1/+17
|
* Handle room broadcastsJames Booth2012-11-191-9/+25
|
* Handle legacy delayed messages in chat roomsJames Booth2012-11-191-20/+8
|
* Handle room member presenceJames Booth2012-11-191-1/+5
|