aboutsummaryrefslogtreecommitdiff
path: root/doc/tutorial-examples/003.c
blob: d13681ca603b76c3015a72321d5a64ee3f03ed56 (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);