about summary refs log tree commit diff stats
path: root/src/xmpp
Commit message (Expand)AuthorAgeFilesLines
* Add XEP-0377: Spam ReportingMichael Vetter2021-07-013-2/+38
* XEP-0157: Print all available addressesMichael Vetter2021-06-301-5/+18
* XEP-0157: Print contact addressesMichael Vetter2021-06-303-20/+14
* XEP-0157: Parse contact address stanzaMichael Vetter2021-06-293-4/+56
* XEP-0353: Display a notice when receiving a callMichael Vetter2021-06-092-0/+26
* Add command to show single bookmark detailsMichael Vetter2021-06-092-0/+8
* Message received without body error logDebXWoody2021-06-031-2/+2
* OMEMO - Unable to publish own device listDebXWoody2021-06-011-0/+16
* Improved OMEMO loggingDebXWoody2021-05-282-8/+17
* message: correct type checkingMichael Vetter2021-05-141-1/+1
* Goodbye beautiful IDsMichael Vetter2021-04-143-30/+18
* Get rid of asprintf and _GNU_SOURCE defineMichael Vetter2021-03-301-5/+3
* Add config.h in files were it was missingMichael Vetter2021-03-2611-0/+22
* iq: use define for 'cancel'Michael Vetter2021-03-261-2/+2
* message: parse stanzaid in MUC caseMichael Vetter2021-03-251-1/+9
* ox: fix memleak in ox_announce_public_keyMichael Vetter2021-03-251-1/+3
* message: make _handle_error saferMichael Vetter2021-03-251-2/+4
* avatar: make _avatar_request_item_result_handler saferMichael Vetter2021-03-251-0/+4
* avatar: make _avatar_metadata_handler saferMichael Vetter2021-03-251-11/+20
* ox: make _ox_public_key_result saferMichael Vetter2021-03-251-5/+15
* ox: guard printing of fingerprintMichael Vetter2021-03-251-1/+3
* ox: improve error log in _ox_metadata_resultMichael Vetter2021-03-251-1/+1
* ox: add logging prefixMichael Vetter2021-03-251-15/+15
* stanza: guard mallocsMichael Vetter2021-03-251-70/+88
* stanza: simplify stanza_get_muc_destroy_alternative_roomMichael Vetter2021-03-251-4/+1
* stanza: replae strcmp with g_strcmp0Michael Vetter2021-03-251-17/+17
* message: simplify _handle_headlineMichael Vetter2021-03-251-4/+2
* message: make _receipt_request_handler saferMichael Vetter2021-03-251-1/+1
* message: make _handle_receipt_received saferMichael Vetter2021-03-251-1/+5
* message: make _handle_groupchat saferMichael Vetter2021-03-251-0/+6
* message: simplify _handle_conferenceMichael Vetter2021-03-251-7/+5
* message: make _handle_form saferMichael Vetter2021-03-251-0/+3
* message: make _message_handler saferMichael Vetter2021-03-251-7/+9
* mesage: make _handle_ox_chat saferMichael Vetter2021-03-251-11/+27
* message: make _handle_chat saferMichael Vetter2021-03-251-0/+3
* message: make _handle_muc_private_message saferMichael Vetter2021-03-251-0/+7
* message: fix potential segfault in _receipt_request_handlerMichael Vetter2021-03-251-3/+7
* message: safeguard _handle_receipt_receivedMichael Vetter2021-03-251-15/+17
* message: reorder _handle_groupchatMichael Vetter2021-03-251-12/+9
* message: fix possible segfault in _handle_conferenceMichael Vetter2021-03-251-19/+23
* message: fix possible segfault in _handle_muc_userMichael Vetter2021-03-251-0/+4
* message: fix possible segfault in _message_handlerMichael Vetter2021-03-251-3/+3
* Add support to register with a roomMichael Vetter2021-03-254-4/+144
* form.c: fix memleak in form_tag_existsMichael Vetter2021-03-171-0/+1
* Add support to approve MUC voice requestsMichael Vetter2021-03-173-2/+52
* MUC: Add voice requestThorben Günther2021-03-124-1/+77
* Merge pull request #1501 from xenrox/change-passwordMichael Vetter2021-03-115-1/+87
|\
| * Add command to change password of logged in userThorben Günther2021-03-115-1/+87
* | Update to the newest version of XEP 0363 (HTTP Upload)Maximilian Wuttke2021-03-113-36/+35
|/
* [OMEMO]: Fix bundle publishingMaximilian Wuttke2021-03-091-14/+16
5'>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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321