about summary refs log tree commit diff stats
path: root/src/xmpp/stanza.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-02-17 02:10:56 +0000
committerJames Booth <boothj5@gmail.com>2013-02-17 02:10:56 +0000
commitbced3d4b36c2080b6dee2c2aa14b64c8cf405cc5 (patch)
tree96aeb660a422139f6524842cb68e1309176e80e9 /src/xmpp/stanza.h
parent44d2f8da7a235997049bac68fea746682ae49e9f (diff)
downloadprofani-tty-bced3d4b36c2080b6dee2c2aa14b64c8cf405cc5.tar.gz
Added autocomplete for /software command
Diffstat (limited to 'src/xmpp/stanza.h')
-rw-r--r--src/xmpp/stanza.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xmpp/stanza.h b/src/xmpp/stanza.h
index 2f3e0216..d07568a7 100644
--- a/src/xmpp/stanza.h
+++ b/src/xmpp/stanza.h
@@ -162,5 +162,6 @@ void stanza_attach_status(xmpp_ctx_t * const ctx, xmpp_stanza_t * const presence
     const char * const status);
 
 const char * stanza_get_presence_string_from_type(resource_presence_t presence_type);
+xmpp_stanza_t * stanza_create_software_version_iq(xmpp_ctx_t *ctx, const char * const fulljid);
 
 #endif
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