aboutsummaryrefslogtreecommitdiff
path: root/src/lib/dispatch/dispatch_cfg.h
blob: 2c755e39bcfb91bf074dfb9fae9da75e5bf6955e (plain)
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
32
33
34
35
36
37
38
39
/* Copyright (c) 2001, Matej Pfajfar.
 * Copyright (c) 2001-2004, Roger Dingledine.
 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
 * Copyright (c) 2007-2018, The Tor Project, Inc. */
/* See LICENSE for licensing information */

#ifndef TOR_DISPATCH_CFG_H
#define TOR_DISPATCH_CFG_H

#include "lib/dispatch/msgtypes.h"

/**
 * A "dispatch_cfg" is the configuration used to set up a dispatcher.
 * It is created and accessed with a set of dcfg_* functions, and then
 * used with dispatcher_new() to make the dispatcher.
 */
typedef struct dispatch_cfg_t dispatch_cfg_t;

dispatch_cfg_t *dcfg_new(void);

int dcfg_msg_set_type(dispatch_cfg_t *cfg, message_id_t msg,
                      msg_type_id_t type);

int dcfg_msg_set_chan(dispatch_cfg_t *cfg, message_id_t msg,
                      channel_id_t chan);

int dcfg_type_set_fns(dispatch_cfg_t *cfg, msg_type_id_t type,
                      const dispatch_typefns_t *fns);

int dcfg_add_recv(dispatch_cfg_t *cfg, message_id_t msg,
                  subsys_id_t sys, recv_fn_t fn);

/** Free a dispatch_cfg_t. */
#define dcfg_free(cfg) \
  FREE_AND_NULL(dispatch_cfg_t, dcfg_free_, (cfg))

void dcfg_free_(dispatch_cfg_t *cfg);

#endif