diff options
author | Harald Welte <laforge@gnumonks.org> | 2017-04-16 19:08:49 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2017-04-26 13:47:06 +0200 |
commit | 79c137c65446ef4139dde63a9e9c023fe9139f80 (patch) | |
tree | c87190ca09aa446434e2c4b2298e56b092a53651 /include/osmocom | |
parent | d6b1f85fd81c3dd267186830a671db88c360054f (diff) |
control_if: Add API to initialize control interface without TCP port bind
When executing test cases, we don't want to bind to a local TCP port, as
we cannot make assumptions as to which ports are actually free.
Change-Id: I5717f9dd92d1f143f069cecd4b4c8ba3d03b25f8
Diffstat (limited to 'include/osmocom')
-rw-r--r-- | include/osmocom/ctrl/control_if.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/osmocom/ctrl/control_if.h b/include/osmocom/ctrl/control_if.h index a740a961..0d379593 100644 --- a/include/osmocom/ctrl/control_if.h +++ b/include/osmocom/ctrl/control_if.h @@ -21,6 +21,7 @@ struct ctrl_handle { int ctrl_cmd_send(struct osmo_wqueue *queue, struct ctrl_cmd *cmd); int ctrl_cmd_send_trap(struct ctrl_handle *ctrl, const char *name, char *value); +struct ctrl_handle *ctrl_handle_alloc(void *ctx, void *data, ctrl_cmd_lookup lookup); struct ctrl_handle *ctrl_interface_setup(void *data, uint16_t port, ctrl_cmd_lookup lookup); struct ctrl_handle *ctrl_interface_setup_dynip(void *data, |