about summary refs log tree commit diff stats
path: root/src
ModeNameSize
-rw-r--r--chat_session.c4667log stats plain blame
-rw-r--r--chat_session.h2490log stats plain blame
-rw-r--r--chat_state.c5331log stats plain blame
-rw-r--r--chat_state.h2160log stats plain blame
d---------command150log stats plain
-rw-r--r--common.c15942log stats plain blame
-rw-r--r--common.h4584log stats plain blame
d---------config302log stats plain
-rw-r--r--contact.c10940log stats plain blame
-rw-r--r--contact.h3668log stats plain blame
d---------event250log stats plain
-rw-r--r--jid.c5106log stats plain blame
-rw-r--r--jid.h2112log stats plain blame
-rw-r--r--log.c18493log stats plain blame
-rw-r--r--log.h2967log stats plain blame
-rw-r--r--main.c4316log stats plain blame
-rw-r--r--muc.c25647log stats plain blame
-rw-r--r--muc.h5615log stats plain blame
d---------otr178log stats plain
-rw-r--r--profanity.c8792log stats plain blame
-rw-r--r--profanity.h1772log stats plain blame
-rw-r--r--resource.c3185log stats plain blame
-rw-r--r--resource.h1942log stats plain blame
-rw-r--r--roster_list.c14235log stats plain blame
-rw-r--r--roster_list.h3204log stats plain blame
d---------tools302log stats plain
d---------ui670log stats plain
d---------xmpp700log stats plain
d06d7d159bf89d740847fedc876ab0137b6b'>6b25d06 ^
1076f2b
dc5d967 ^
1076f2b
1076f2b
b6ad663 ^
1076f2b






0053620 ^
1076f2b





b5159df ^
6b25d06 ^
b5159df ^












b5159df ^



6651dd7 ^
b5159df ^







6651dd7 ^
ca65478 ^

b5159df ^

b5159df ^

b5159df ^


b5159df ^
b55bd70 ^





b5159df ^
6651dd7 ^
10885d3 ^
b5159df ^


6fc8a63 ^
6651dd7 ^
931e712 ^

b5159df ^
b55bd70 ^
b5159df ^







6651dd7 ^
b003a35 ^

931e712 ^
b003a35 ^

6651dd7 ^
b5159df ^

2e834e9 ^
6651dd7 ^
b5159df ^
b5159df ^

adaa28a ^




ca65478 ^
adaa28a ^



bf35794 ^

3399650 ^
ca65478 ^
0ff8065 ^
352e1b4 ^

3399650 ^
0ff8065 ^


352e1b4 ^
3399650 ^
0ff8065 ^
c09bf8d ^
080a38d ^
352e1b4 ^
3399650 ^



ca65478 ^
3399650 ^








e6cbe9c ^
3399650 ^

adaa28a ^
ca65478 ^
727449d ^
1076f2b

6651dd7 ^
bf35794 ^
b597fa4 ^
dba2306 ^

ca65478 ^
dba2306 ^
dc5d967 ^




1d7674b ^

dba2306 ^

dc5d967 ^
b597fa4 ^
4641aa2 ^

1076f2b
ca65478 ^
61a1910 ^
b5159df ^
dc5d967 ^
1076f2b
4970ef9 ^


1076f2b
4970ef9 ^

1076f2b

86d1224 ^
e571de8 ^
1076f2b

dba2306 ^

86d1224 ^
1076f2b
f60c597 ^
dba2306 ^

1076f2b
b6ad663 ^
f60c597 ^
dba2306 ^
2ffdc19 ^
b5159df ^
c0705ee ^
dba2306 ^
1076f2b
4e2c5b5 ^
0680c76 ^
b6ad663 ^
727449d ^
e3fd306 ^
0e5c819 ^
95e8d12 ^

e571de8 ^
478f6f9 ^


61a1910 ^
478f6f9 ^

61a1910 ^
478f6f9 ^
61a1910 ^
478f6f9 ^


61a1910 ^
478f6f9 ^


27ef735 ^
61a1910 ^


0e5c819 ^
478f6f9 ^
0e5c819 ^
478f6f9 ^

439e15d ^
1076f2b

1076f2b

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