about summary refs log tree commit diff stats
path: root/src/xmpp/iq.c
Commit message (Collapse)AuthorAgeFilesLines
* Add ProfIdFreeCallback to free stale id handlers on connectJames Booth2016-06-081-31/+66
|
* Use hash table for disco featuresJames Booth2016-05-081-3/+3
|
* Add connection_get_disco_info()James Booth2016-05-081-20/+7
|
* Add connection_item_for_feature()James Booth2016-05-081-34/+19
|
* Move logic to connection_set_disco_itemsJames Booth2016-05-081-35/+34
|
* Move disco info struct to connectionJames Booth2016-05-071-3/+3
|
* Rename jabber_ functionsJames Booth2016-05-061-4/+6
|
* Add session.cJames Booth2016-05-051-3/+3
|
* Renamed connection.c -> session.cJames Booth2016-05-051-1/+1
|
* Tidy xmpp headersJames Booth2016-05-041-37/+39
|
* Rename stanza handler init functionsJames Booth2016-05-021-1/+1
|
* Rename id_handler_add -> iq_id_handler_addJames Booth2016-05-021-22/+22
|
* Remove free DiscoInfo valuesJames Booth2016-05-021-1/+1
|
* Free stanza text and DiscoInfo featuresJames Booth2016-05-021-1/+3
|
* Free stanza text on plugin send hooksJames Booth2016-05-011-0/+1
|
* Add /blocked commandJames Booth2016-05-011-0/+6
|
* Define stanza's attributes as const char*Dmitry Podgorny2016-04-271-40/+40
| | | | | | | | | | | | In most get-like funcitons libstrophe returns pointer to a string that resides in an internal structure (e.g. xmpp_stanza_t). Hence, Profanity must not change such strings. Define respective variables as 'const char*' to reduce a chance of error and conform future libstrophe's interface. This patch mostly replaces 'char *' with 'const char*', but also fixes two memory leaks after stanza_get_reason(). Add comment within stanza_get_reason() to fix conflict with different allocator types.
* Implement XEP-0363: HTTP File UploadDominik Heidler2016-04-261-0/+92
|
* Cache all disco items and features on connectDominik Heidler2016-04-201-1/+101
|
* Fix typo: diso -> discoDominik Heidler2016-04-011-4/+4
|
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-7/+7
|
* Removed duplicate typedefJames Booth2016-03-281-2/+0
|
* Use one stanza handler per type (message, iq, presence)James Booth2016-03-281-265/+215
| | | | Allows plugins to stop stanza processing
* Added basic stanza receive eooksJames Booth2016-03-271-118/+196
|
* Use xmpp_send_raw_string instead of xmpp_send_rawJames Booth2016-03-261-2/+2
|
* Added stanza send hooks for pluginsJames Booth2016-03-261-29/+47
|
* Added prof_send_stanza to plugins APIJames Booth2016-03-231-6/+6
|
* Merge branch 'master' into plugins-cJames Booth2016-02-141-1/+1
|\ | | | | | | | | | | Conflicts: src/main.c src/ui/console.c
| * Updated copyrightJames Booth2016-02-141-1/+1
| |
* | Added C plugin code from plugins branchJames Booth2016-02-141-7/+7
|/
* Use offline presence for software version responses from non contactsJames Booth2016-01-131-8/+12
| | | | fixes #714
* Set autoping timeout default to 10 seconds, added null checksJames Booth2016-01-021-2/+13
|
* Added autoping timeout preferenceJames Booth2016-01-011-4/+5
|
* Added hardcoded autoping timeoutJames Booth2015-12-311-0/+25
|
* Abort autping when existing attempt already in progressJames Booth2015-12-311-2/+14
|
* Tidy ping handlersJames Booth2015-12-311-49/+53
|
* Renamed autoping handlerJames Booth2015-12-301-6/+6
|
* Make all mucconfwin functions take ProfMucConfWinJames Booth2015-11-021-1/+2
|
* Renamed mucconfwin functionsJames Booth2015-11-021-1/+1
|
* mucwin_role_set_error takes ProfMucWinJames Booth2015-11-021-1/+4
|
* mucwin_affiliation_set_error takes ProfMucWinJames Booth2015-11-021-1/+4
|
* mucwin_handle_role_list takes ProfMucWinJames Booth2015-11-021-1/+4
|
* mucwin_role_list_error takes ProfMucWinJames Booth2015-11-021-1/+4
|
* mucwin_handle_affiliation_list takes ProfMucWinJames Booth2015-11-021-1/+4
|
* mucwin_affiliation_list_error takes ProfMucWinJames Booth2015-11-021-1/+4
|
* mucwin_kick_error takes ProfMucWinJames Booth2015-11-021-4/+3
|
* mucwin_room_disco_info takes ProfMucWinJames Booth2015-11-011-2/+3
|
* mucwin_room_info_error takes ProfMucWinJames Booth2015-11-011-2/+4
|
* Renamed ui_handle_room_role_set_error -> mucwin_role_set_errorJames Booth2015-11-011-1/+1
|
* Renamed ui_handle_room_affiliation_set_error -> mucwin_affiliation_set_errorJames Booth2015-11-011-1/+1
|