diff options
author | James Booth <boothj5@gmail.com> | 2016-03-23 22:57:03 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-03-23 22:57:03 +0000 |
commit | 4c913aa08baa5e27972ee10d453e440c13fb7fb7 (patch) | |
tree | d507c4d8917dd230f9a275855146238b50fd0415 /tests/unittests | |
parent | 503fc9e393708cab48de47bc80d4f6a0c0f6cc43 (diff) | |
download | profani-tty-4c913aa08baa5e27972ee10d453e440c13fb7fb7.tar.gz |
Added prof_send_stanza to plugins API
Diffstat (limited to 'tests/unittests')
-rw-r--r-- | tests/unittests/xmpp/stub_xmpp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unittests/xmpp/stub_xmpp.c b/tests/unittests/xmpp/stub_xmpp.c index dc630198..3ba7f2b3 100644 --- a/tests/unittests/xmpp/stub_xmpp.c +++ b/tests/unittests/xmpp/stub_xmpp.c @@ -64,6 +64,12 @@ GList * jabber_get_available_resources(void) return NULL; } +gboolean +jabber_send_stanza(const char *const stanza) +{ + return TRUE; +} + // message functions char* message_send_chat(const char * const barejid, const char * const msg) { |