about summary refs log tree commit diff stats
path: root/src/xmpp/iq.c
Commit message (Expand)AuthorAgeFilesLines
* XEP-0107: User Mood - Clean moodStefan Kropp2022-01-301-8/+9
* xep-0107: code reviewDebXWoody2021-12-061-8/+8
* Add xep-0107: User Mood supportDebXWoody2021-12-061-0/+52
* first step to remove libmesodeSteffen Jaeckel2021-10-271-6/+0
* Format new register code correctlyMichael Vetter2021-10-131-1/+0
* Merge pull request #1574 from binex-dsk/masterMichael Vetter2021-10-131-0/+1
|\
| * registration: remove auth param and excess functionsswirl2021-08-171-32/+0
| * fixed some bugs, added some moreswirl2021-08-171-2/+3
| * initial register command testswirl2021-08-171-0/+32
* | Format code correctlyMichael Vetter2021-10-051-9/+6
* | Fix typosMichael Vetter2021-09-221-2/+2
|/
* Mention feature details when not supportedMichael Vetter2021-07-011-2/+2
* XEP-0157: Print contact addressesMichael Vetter2021-06-301-16/+3
* XEP-0157: Parse contact address stanzaMichael Vetter2021-06-291-4/+22
* iq: use define for 'cancel'Michael Vetter2021-03-261-2/+2
* stanza: guard mallocsMichael Vetter2021-03-251-70/+88
* Add support to register with a roomMichael Vetter2021-03-251-0/+125
* Merge pull request #1501 from xenrox/change-passwordMichael Vetter2021-03-111-0/+30
|\
| * Add command to change password of logged in userThorben Günther2021-03-111-0/+30
* | Update to the newest version of XEP 0363 (HTTP Upload)Maximilian Wuttke2021-03-111-9/+22
|/
* Enable error logging on MAM RSMMichael Vetter2021-01-281-4/+1
* Get MAM from last 7 daysMichael Vetter2021-01-281-1/+1
* MAM: Request more pages via RSMMichael Vetter2021-01-281-6/+22
* Adapt MAM RSM code to latest functionsMichael Vetter2021-01-281-3/+3
* wip: add rsm after we get the first couple of mam messagesMichael Vetter2021-01-281-3/+18
* mam: Use correct ID in rsm handlerMichael Vetter2021-01-281-3/+1
* mam: fix logging messageMichael Vetter2021-01-281-1/+1
* Start working on MAM RSM to get more pagesMichael Vetter2021-01-281-1/+24
* Fix various typosMichael Vetter2020-12-101-3/+3
* Fixed Date format for MAM requestDebXWoody2020-10-281-2/+2
* Apply coding styleMichael Vetter2020-07-071-551/+566
* Revert "Apply coding style"Michael Vetter2020-07-071-577/+563
* Apply coding styleMichael Vetter2020-07-071-563/+577
* Incoming iq stanza - Reset the autoping timerDebXWoody2020-05-231-0/+2
* xep-0092: make it possible to ask servers or components for softwareMichael Vetter2020-05-141-17/+28
* _iq_id_handler_free() dont set NULLMichael Vetter2020-04-201-1/+0
* Don't expose upload_processesMichael Vetter2020-04-171-1/+1
* Review logging in iq.cMichael Vetter2020-04-141-27/+39
* Free timestamp correctlyMichael Vetter2020-04-131-2/+3
* Check if server suppors MAMMichael Vetter2020-04-121-2/+5
* Get MAM since yesterdayMichael Vetter2020-04-121-1/+7
* First MAM testMichael Vetter2020-04-111-0/+19
* Use proper OS names for OpenBSD and NetBSDMichael Vetter2020-03-091-2/+2
* Fix few memory leaksDmitry Podgorny2020-02-271-0/+2
* xep-0092: add config option to set whether OS is revealedMichael Vetter2020-01-231-14/+22
* xep-0092: send OS tooMichael Vetter2020-01-231-0/+23
* Add option to notify about version requestMichael Vetter2020-01-231-0/+8
* Save MUC room name in ProfMucWinMichael Vetter2020-01-231-0/+4
* Use OMEMO for offline MUC members (#1242)Paul Fariello2020-01-201-8/+33
* Add vim modelineMichael Vetter2019-11-131-0/+1
k/mu/commit/046check_type_by_name.cc?h=hlt&id=697d1d121390483881e85f6508e5f2899cf3f137'>697d1d12 ^
cf363343 ^

af023b32 ^
a70ce311 ^
9dcbec39 ^
cf363343 ^

a70ce311 ^
9dcbec39 ^
cf363343 ^


78c78c06 ^
112613fe ^
2caaa7f1 ^







4a943d4e ^



















































































































































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
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