about summary refs log tree commit diff stats
path: root/src/xmpp/blocking.c
Commit message (Collapse)AuthorAgeFilesLines
* first step to remove libmesodeSteffen Jaeckel2021-10-271-6/+0
| | | | Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
* XEP-0377: Add forgotten namespaceMichael Vetter2021-07-011-0/+1
|
* Add XEP-0377: Spam ReportingMichael Vetter2021-07-011-1/+26
| | | | | | | | | | | Report and block: `/blocked add someone@domain.org report-abuse This is not nice` `/blocked add someone@domain.org report-spam This is not nice` Regular block: `/blocked add someone@domain.org` Implement https://github.com/profanity-im/profanity/issues/1434
* Add config.h in files were it was missingMichael Vetter2021-03-261-0/+2
| | | | Related to https://github.com/profanity-im/profanity/issues/1512
* Apply coding styleMichael Vetter2020-07-071-45/+43
|
* Revert "Apply coding style"Michael Vetter2020-07-071-46/+48
| | | | | | This reverts commit 9b55f2dec0ea27a9ce4856e303425e12f866cea2. Sorting the includes creates some problems.
* Apply coding styleMichael Vetter2020-07-071-48/+46
| | | | Regards https://github.com/profanity-im/profanity/issues/1396
* Review logging for blocking.cMichael Vetter2020-04-141-2/+2
|
* Add context to autocomplete_with_func and use it for omemo trust commandPaul Fariello2020-01-311-1/+1
| | | | Fix #1068
* Add vim modelineMichael Vetter2019-11-131-0/+1
|
* Remove prefix from stanza idMichael Vetter2019-10-171-3/+3
| | | | | We sent `prof_prefix_uuid` as id. Where the prefix was also optional. We don't need this at all.
* Fix segfault in block commandMichael Vetter2019-07-191-6/+0
| | | | | | Another case of double free() due to new destructor. Fixes https://github.com/profanity-im/profanity/issues/1156
* Update copyright to include 2019Michael Vetter2019-01-221-1/+1
|
* Move ID generation to xmpp folderMichael Vetter2018-08-301-3/+3
| | | | | | | | | | | create_unique_id() was changed to use UUIDs instead of a counter in the last commit. Since now it depends on connection_create_uuid() which is in the xmpp subfolder the function should also be moved there. Renamed it to connection_create_stanza_id() and moved it to src/xmpp/connection.c. Discussion happened in https://github.com/boothj5/profanity/pull/1010
* Update copyrightJames Booth2018-01-211-1/+1
|
* Allow previous autocompletion with shift tabJames Booth2017-04-011-2/+2
|
* Update CopyrightJames Booth2017-01-281-1/+1
|
* Use hash table for bookmarksJames Booth2016-08-211-8/+7
|
* Use libstrophe xmpp_iq_new convenience functionJames Booth2016-08-201-10/+4
|
* Use libstrophe convenience functions for stanza attributesJames Booth2016-08-201-2/+2
|
* Tidy headersJames Booth2016-07-241-0/+1
|
* Update GPL link in headersJames Booth2016-07-241-1/+1
|
* Add ProfIdFreeCallback to free stale id handlers on connectJames Booth2016-06-081-3/+3
|
* Add missing string.h include in blocking.cJames Booth2016-05-111-0/+1
|
* Rename jabber_ functionsJames Booth2016-05-061-0/+1
|
* Renamed connection.c -> session.cJames Booth2016-05-051-1/+1
|
* Tidy xmpp headersJames Booth2016-05-041-3/+4
|
* Remove userdata from _blocklist_result_handlerJames Booth2016-05-021-1/+1
|
* Rename id_handler_add -> iq_id_handler_addJames Booth2016-05-021-3/+3
|
* Add /blocked commandJames Booth2016-05-011-0/+323
5f0c38dfc8712c11ae7b4c30'>^
58fb89ad ^
bc2784da ^




b6095ca9 ^
c84cb17b ^
2837c405 ^
48f9f3b3 ^
167ee28e ^
48f9f3b3 ^
78beccee ^
475dfebd ^
eb5cb7b2 ^
bc2784da ^
5e5590b0 ^

e263e00a ^





508bfeb2 ^












5bb3fab1 ^
2837c405 ^
48f9f3b3 ^



bc2784da ^
42a5c431 ^
bc2784da ^
78beccee ^

167ee28e ^

78beccee ^

57c75644 ^
78beccee ^
bc2784da ^
b94dc5ec ^
8a54c589 ^
bc2784da ^






b94dc5ec ^
bc2784da ^

4ba33cb1 ^
31cd507d ^
bc2784da ^

26d160ca ^


81020e6d ^
1917d4c0 ^
fac2b2cf ^

81020e6d ^
bc2784da ^

dd206ef6 ^
bc2784da ^
576be792 ^
bc2784da ^


57effcd5 ^
bc2784da ^

09c10f62 ^

aa9f1dfa ^

1e0e5597 ^



eba3a7cb ^

0b78a9a5 ^



965f048b ^



7584ddaa ^
ac7bc02c ^

bc2784da ^


bc2784da ^



b94dc5ec ^








1cea320a ^
e9225687 ^
bced3d4b ^
b960b760 ^

1cd2d6c7 ^
8d2e0656 ^


d5e9ca64 ^

01bdc6ae ^

d300e8e7 ^
292ae567 ^

d12534c5 ^




77674beb ^

d12534c5 ^
508bfeb2 ^



e263e00a ^


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