about summary refs log tree commit diff stats
path: root/src/jabber.c
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Show message when own nickname changed in chat roomsJames Booth2012-11-181-6/+13
|
* Moved function to remove from roster on nick changeJames Booth2012-11-181-1/+2
|
* Handle nick changes from other usersJames Booth2012-11-181-19/+29
|
* Allow nick change in chat roomJames Booth2012-11-181-0/+14
|
* Support legacy delayed delivery (XEP-0091) as well as XEP-0203James Booth2012-11-181-13/+5
|
* prevent double free of jabber_conn.statusDmitry Podgorny2012-11-181-1/+3
|
* Treat room presence as onlineJames Booth2012-11-141-1/+1
| | | | Needs to be changed to show status changes
* Set correct window type on private messagesJames Booth2012-11-141-3/+6
|
* Merge pull request #81 from pasis/priorityJames Booth2012-11-131-9/+64
|\ | | | | introduce priority support
| * fix crash on changing priority when disconnectedDmitry Podgorny2012-11-141-1/+6
| | | | | | | | | | sending presence causes null pointer dereference when disconnected because ctx variable isn't set
| * jabber: use safe snprintf instead of sprintfDmitry Podgorny2012-11-131-2/+2
| |
| * introduce priority supportDmitry Podgorny2012-11-131-9/+59
| | | | | | | | | | | | | | add new command /priority <int> improve jabber_update_presence() use jabber_update_presence() for sending initial presence save priority and status string to jabber_conn structure
* | Allow incoming private messages from chat roomsJames Booth2012-11-121-7/+18
|/
* add subscription supportDmitry Podgorny2012-11-111-9/+31
|
* Added function to create room jid from room and nickJames Booth2012-11-101-1/+4
|
* Renamed room_chat functionJames Booth2012-11-101-1/+1
|
* Renamed params in jabber_joinJames Booth2012-11-101-3/+3
|
* Handle subject from roomJames Booth2012-11-101-2/+17
|
* Show error text if receivedJames Booth2012-11-101-14/+25
|