2013-08-17 22:55:20 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
static FILE * f = NULL;
|
|
|
|
|
|
|
|
void
|
|
|
|
prof_init (const char * const version, const char * const status)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "called %s with args=<%s, %s>\n", __func__, version, status);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prof_on_start (void)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "called %s with no args\n", __func__);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
prof_on_connect (void)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "called %s with no args\n", __func__);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-08-18 12:00:15 -04:00
|
|
|
prof_on_message_received (const char * const jid, const char * const message)
|
2013-08-17 22:55:20 -04:00
|
|
|
{
|
|
|
|
fprintf (stderr, "called %s with args=<%s, %s>\n", __func__, jid, message);
|
|
|
|
}
|
|
|
|
|
|
|
|
|