net: remove net_conn api (old and unused) (#145)

This commit is contained in:
Alfred E. Heggestad 2018-05-31 08:57:22 +02:00 committed by Richard Aas
parent 7263d107c8
commit 055195d2ea

View file

@ -109,20 +109,6 @@ int net_rt_default_get(int af, char *ifname, size_t size);
int net_rt_debug(struct re_printf *pf, void *unused);
/* Network connection */
/**
* Defines the network connection handler
*
* @param err Error code
* @param id Associated ID
*/
typedef void (net_conn_h)(int err, uint32_t id);
int net_conn_start(net_conn_h *ch, uint32_t id, bool prompt);
void net_conn_stop(void);
/* Net strings */
const char *net_proto2name(int proto);
const char *net_af2name(int af);