summaryrefslogtreecommitdiffstats
path: root/udht.h
blob: c85a1e63f7b57411590cc573d54b0ff522afe94e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __UDHT_H
#define __UDHT_H

int udht_reconnect(void);
void udht_network_add(const uint8_t *auth_key, int seq);
void udht_network_flush(int seq);

#ifdef UBUS_SUPPORT
void udht_ubus_init(void);
#else
static inline void udht_ubus_init(void)
{
}
#endif


#endif