aboutsummaryrefslogtreecommitdiff
path: root/doc/tutorial-examples/003.c
blob: f1105a0707923803147bd53286c50673fce92c8d (plain) (blame)
1
2
3
4
5
6
7
struct GNUNET_MQ_MessageHandlers handlers[] = {
    // ...
  GNUNET_MQ_handler_end ()
};
struct GNUNET_MQ_Handle *mq;

mq = GNUNET_CLIENT_connect (cfg, "service-name", handlers, &error_cb, NULL);