about summary refs log tree commit diff stats
path: root/src/xmpp/connection.c
Commit message (Expand)AuthorAgeFilesLines
* simplify some codeSteffen Jaeckel2023-03-111-5/+1
* remove compat codeSteffen Jaeckel2023-03-111-15/+0
* prevent setting invalid combination of libstrophe flagsSteffen Jaeckel2023-01-271-2/+10
* add `/strophe` command to modify libstrophe-specific settingsSteffen Jaeckel2023-01-181-7/+17
* Update copyright yearMichael Vetter2023-01-101-1/+1
* fixup 11f52ad5474c7adb7f11df5b0c318597e4150312Steffen Jaeckel2022-08-081-3/+6
* integrate XEP-0198 Stream-ManagementSteffen Jaeckel2022-08-081-0/+25
* Update copyright yearMichael Vetter2022-05-091-1/+1
* clean-up connection (act I)Steffen Jaeckel2022-03-301-152/+63
* also store PEM in `TLSCertificate`Steffen Jaeckel2022-03-221-1/+2
* prevent segfaultSteffen Jaeckel2022-03-131-4/+8
* Set libstrophe log verbosityMichael Vetter2022-02-211-0/+1
* Fix off-by-oneSteffen Jaeckel2022-02-011-2/+2
* add missing IPv6 handlingSteffen Jaeckel2022-02-011-5/+22
* add fall-back for older GLib versionsSteffen Jaeckel2022-02-011-18/+54
* handle `see-other-host` XMPP stream errorSteffen Jaeckel2022-02-011-0/+72
* auto-formatSteffen Jaeckel2022-02-011-1/+1
* use new libstrophe APISteffen Jaeckel2021-10-271-43/+23
* first step to remove libmesodeSteffen Jaeckel2021-10-271-6/+0
* Format new register code correctlyMichael Vetter2021-10-131-30/+33
* Merge pull request #1574 from binex-dsk/masterMichael Vetter2021-10-131-1/+356
|\
| * registration: memory leaks, error checkingswirl2021-10-131-4/+5
| * fixed crashes when server doesn't support registrationswirl2021-10-101-1/+1
| * registration: remove auth param and excess functionsswirl2021-08-171-114/+1
| * REGISTRATION FIXEDMichael Vetter2021-08-171-8/+8
| * progress on fixing registrationswirl2021-08-171-4/+5
| * hacky fix(?) for registerswirl2021-08-171-1/+346
| * fixed some bugs, added some moreswirl2021-08-171-1/+16
| * initial register command testswirl2021-08-171-0/+106
* | Format code correctlyMichael Vetter2021-10-051-3/+3
|/
* Goodbye beautiful IDsMichael Vetter2021-04-141-22/+10
* Add command to change password of logged in userThorben Günther2021-03-111-0/+13
* Logging [CONNECTION]Stefan2021-03-091-0/+1
* Require libstrophe/libmesode 0.10.0Michael Vetter2020-09-301-8/+0
* Apply coding styleMichael Vetter2020-07-071-88/+114
* Revert "Apply coding style"Michael Vetter2020-07-071-118/+92
* Apply coding styleMichael Vetter2020-07-071-92/+118
* Fix reading/writing linked filesMichael Vetter2020-06-131-1/+1
* Make legacy auth optionalDmitry Podgorny2020-06-111-0/+9
* Add option for legacy authenticationDmitry Podgorny2020-06-051-6/+28
* Add and use connection_get_barejid()Michael Vetter2020-05-251-0/+12
* Add vim modelineMichael Vetter2019-11-131-0/+1
* Display ownership of connection_get_profanity_identifierMichael Vetter2019-10-221-1/+1
* Use UUID in origin-id and idMichael Vetter2019-10-221-5/+5
* Set prof_ident to NULL after freeMichael Vetter2019-10-211-1/+2
* Rename _calculate_identifier to _compute_identifierMichael Vetter2019-10-201-3/+3
* Rename random_bytes to profanity_instance_idMichael Vetter2019-10-191-6/+6
* Free hmac and msgidMichael Vetter2019-10-191-0/+3
* Free prof_identifier in case of reconnectMichael Vetter2019-10-191-0/+3
* Change origin-id/id algoMichael Vetter2019-10-181-10/+10
e9607b6c2a715'>^
e709c65e ^
1ed9af83 ^







5f128523 ^

8e7827df ^
5f128523 ^
9a31c34f ^



5f128523 ^
e709c65e ^




9a31c34f ^

1ed9af83 ^
4d6b5173 ^
1ed9af83 ^



9a31c34f ^
1ed9af83 ^

9a31c34f ^
5f128523 ^
9a31c34f ^

5f128523 ^
9a31c34f ^









5f128523 ^
9a31c34f ^
5f128523 ^
9a31c34f ^







5f128523 ^
9a31c34f ^


5f128523 ^
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