unet-cli: strip initial newline in usage message
[project/unetd.git] / udht.h
1 #ifndef __UDHT_H
2 #define __UDHT_H
3
4 int udht_reconnect(void);
5 void udht_network_add(const uint8_t *auth_key, int seq);
6 void udht_network_flush(int seq);
7
8 #ifdef UBUS_SUPPORT
9 void udht_ubus_init(void);
10 #else
11 static inline void udht_ubus_init(void)
12 {
13 }
14 #endif
15
16
17 #endif