aboutsummaryrefslogtreecommitdiff
path: root/doc/tutorial/examples/006.c
blob: 944d2b18c72e4d6d27b244179785e3dc95dbb8da (plain) (blame)
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
static void
handle_fix (void *cls, const struct MyMessage *msg)
{
  // process 'msg'
}

static int
check_var (void *cls, const struct MyVarMessage *msg)
{
  // check 'msg' is well-formed
  return GNUNET_OK;
}

static void
handle_var (void *cls, const struct MyVarMessage *msg)
{
  // process 'msg'
}

struct GNUNET_MQ_MessageHandler handlers[] = {
  GNUNET_MQ_hd_fixed_size (fix,
                          GNUNET_MESSAGE_TYPE_MY_FIX,
                          struct MyMessage,
                          NULL),
  GNUNET_MQ_hd_fixed_size (var,
                          GNUNET_MESSAGE_TYPE_MY_VAR,
                          struct MyVarMessage,
                          NULL),

  GNUNET_MQ_handler_end ()
};