about summary refs log tree commit diff stats
path: root/src/xmpp/connection.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed various jid and account mem leaksJames Booth2015-06-241-0/+1
* Added initial stabber testJames Booth2015-05-171-4/+5
* Use null check convention in connection.cJames Booth2015-05-041-12/+12
* Renamed event functionsJames Booth2015-04-281-5/+5
* Renamed server event functionsJames Booth2015-04-191-5/+5
* Moved server_events to event/James Booth2015-04-191-2/+2
* Merge remote-tracking branch 'oliverlemoal/xep-0280' into xep-0280James Booth2015-03-081-0/+5
|\
| * Add XEP-0280 supportOlivier LE MOAL2015-02-101-0/+5
* | Updated copyrightJames Booth2015-02-101-1/+1
|/
* Removed function pointersJames Booth2014-12-221-42/+25
* Fixed various memory leaksJames Booth2014-11-011-3/+3
* Small spelling fixes in code and commentsDariusz Dwornikowski2014-08-271-1/+1
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* Free jabber_conn.logJames Booth2014-06-151-0/+4
* Free saved account details before replacingJames Booth2014-06-151-0/+6
* Added connection details to jabber_shutdownJames Booth2014-06-151-0/+3
* Fixed cppcheck warningsJames Booth2014-04-261-2/+1
* Tidied jabber_process_eventsJames Booth2014-04-231-14/+20
* Added simple stanza logging to main consoleJames Booth2014-04-151-0/+3
* Revert "Commented bookmarks code for 0.4.0 release"James Booth2014-03-291-1/+1
* Commented bookmarks code for 0.4.0 releaseJames Booth2014-03-161-1/+1
* Updated copyrightJames Booth2014-03-091-1/+1
* Moved connection_error_handler to _presence_error_handlerJames Booth2014-01-271-43/+0
* Moved xmpp ping to iq moduleJames Booth2014-01-261-37/+0
* Add message and presence error handlers seperatelyJames Booth2014-01-251-11/+0
* Don't show error for initial bookmarks requestJames Booth2014-01-251-2/+11
* Fixed test compilationJames Booth2014-01-181-1/+1
* WIP - Adding port to account optionsJames Booth2014-01-181-8/+14
* 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
* Bind jabber functions in main.cJames Booth2013-12-221-14/+17
* Dynamically bind xmpp module apiJames Booth2013-12-181-26/+40
* Use passwords from the accounts fileTomás Senart2013-10-141-5/+4
* Add error handler only onceJames Booth2013-09-221-0/+1
* use get_unique_id for bookmarksDmitry Podgorny2013-07-141-13/+0
* initial support of autojoin for MUCDmitry Podgorny2013-06-301-0/+15
* fixed several memory leaksDmitry Podgorny2013-06-091-2/+6
* Refactored roster push handlingJames Booth2013-05-211-2/+2
* Renamed contact_list_ functions to roster_James Booth2013-05-061-1/+0
* Created roster module, moved roster iq'sJames Booth2013-05-061-1/+3
* Fixed error when losing connection and segfaulting on notify_remind()James Booth2013-05-061-2/+2
* Show shortened room jid if possible on inviteJames Booth2013-04-181-0/+13
* Check for NULL connection and contextJames Booth2013-03-021-4/+16
* Init and shutdown of libstrophe moved, free resources before creatingJames Booth2013-02-271-12/+24
* Removed connection_shutdown functionJames Booth2013-02-271-12/+9
* Replace FREE_SET_NULLs with function callJames Booth2013-02-271-4/+1
* Split connection_free_resourcesJames Booth2013-02-271-7/+34
* Made connection free resources static functionJames Booth2013-02-271-4/+6
* Added debug to connection handlerJames Booth2013-02-261-0/+12
sion' href='/akspecs/ranger/blame/ranger/ext/vcs/svn.py?id=34fec205ee153928b7b99d888f04be758041beed'>^
61a6dcf2 ^



1a2145bb ^
61a6dcf2 ^
d734fc8e ^
d734fc8e ^
61a6dcf2 ^




1a2145bb ^

61a6dcf2 ^
1a2145bb ^
61a6dcf2 ^








d734fc8e ^
a9000364 ^
61a6dcf2 ^
d734fc8e ^
61a6dcf2 ^
1a2145bb ^





d734fc8e ^
61a6dcf2 ^






d734fc8e ^
a9000364 ^
d734fc8e ^
d734fc8e ^
a9000364 ^
61a6dcf2 ^










d734fc8e ^
61a6dcf2 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149