diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/osmocom/ctrl/control_if.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/osmocom/ctrl/control_if.h b/include/osmocom/ctrl/control_if.h index 6e49742d..d4443287 100644 --- a/include/osmocom/ctrl/control_if.h +++ b/include/osmocom/ctrl/control_if.h @@ -24,12 +24,20 @@ 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_handle_alloc2(void *ctx, void *data, +				       ctrl_cmd_lookup lookup, +				       unsigned int node_count);  struct ctrl_handle *ctrl_interface_setup(void *data, uint16_t port,  					 ctrl_cmd_lookup lookup);  struct ctrl_handle *ctrl_interface_setup_dynip(void *data,  					       const char *bind_addr,  					       uint16_t port,  					       ctrl_cmd_lookup lookup); +struct ctrl_handle *ctrl_interface_setup_dynip2(void *data, +						const char *bind_addr, +						uint16_t port, +						ctrl_cmd_lookup lookup, +						unsigned int node_count);  struct ctrl_connection *osmo_ctrl_conn_alloc(void *ctx, void *data);  int ctrl_cmd_handle(struct ctrl_handle *ctrl, struct ctrl_cmd *cmd, void *data);  struct ctrl_cmd *ctrl_cmd_exec_from_string(struct ctrl_handle *ch, const char *cmdstr); | 
