actube/src/ac/discovery_cache.c
7u83@mail.ru 3d51c17a9a Work on DTLS
FossilOrigin-Name: 5cc472aaf15b6e5dfe9beb3241c11f51af85dc3a29d94fee47992cbaf794fde2
2018-04-02 08:11:25 +00:00

25 lines
335 B
C

#include "cw/mlist.h"
#include "cw/mavl.h"
struct cw_DiscoveryCache{
int len;
};
struct CacheElem{
struct sockaddr_storage addr;
const char *mod_capwap;
const char *mod_bindings;
};
void discovery_cache_destroy(struct cw_DiscoveryCache * c)
{
}
struct cw_DiscoveryCache * discovery_cache_init(int len){
return NULL;
}