about summary refs log tree commit diff stats
path: root/src/xmpp/message.c
Commit message (Expand)AuthorAgeFilesLines
* Moved messages handlers to server_eventsJames Booth2014-01-051-14/+15
* Bind message functions in main.cJames Booth2013-12-221-9/+13
* Dynamically bind xmpp module apiJames Booth2013-12-181-16/+25
* Added simple mock test, refactored rosterJames Booth2013-12-141-0/+1
* Add error handler only onceJames Booth2013-09-221-1/+0
* fixed memory leaks in various filesDmitry Podgorny2013-08-251-0/+1
* fixed memory leaksDmitry Podgorny2013-08-031-0/+6
* Moved stophe references in message sendJames Booth2013-06-201-2/+2
* Merge remote-tracking branch 'dmitry/captcha-2' into captchaJames Booth2013-06-161-0/+12
|\
| * added support of captcha in a MUCDmitry Podgorny2013-06-091-0/+12
* | fixed several memory leaksDmitry Podgorny2013-06-091-16/+39
|/
* Use waddstr for incoming messages to avoid truncationJames Booth2013-06-011-1/+0
* Renamed roster_barejid_from_handle -> roster_barejid_from_nameJames Booth2013-05-211-2/+2
* Renamed roster_jid_from_handle -> roster_barejid_from_handleJames Booth2013-05-211-2/+2
* Use handle in /msg commandJames Booth2013-05-191-6/+15
* Added /duck command to perform searches using duckduckgo chat botJames Booth2013-05-051-4/+27
* Added /invite for direct MUC invitationsJames Booth2013-04-201-17/+12
* Show message in console when receiving chat room invitesJames Booth2013-03-241-3/+85
* Added usage of handlers to message and presence modulesJames Booth2013-02-101-26/+10
* Moved private xmpp functions to connection.hJames Booth2013-02-031-15/+16
* Refactored getting boolean preferencesJames Booth2013-02-031-3/+3
* Added config dir to sourceJames Booth2013-02-021-1/+1
* Tidied #include'sJames Booth2013-02-021-3/+3
* Removed message handler function from xmpp.hJames Booth2013-02-021-0/+1
* Removed stanza functions from xmpp.hJames Booth2013-02-021-0/+1
* Added xmpp subdir to sourceJames Booth2013-02-021-0/+304
>
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