Work on DTLS

FossilOrigin-Name: 5cc472aaf15b6e5dfe9beb3241c11f51af85dc3a29d94fee47992cbaf794fde2
This commit is contained in:
7u83@mail.ru
2018-04-02 08:11:25 +00:00
parent 284c81f1a8
commit 3d51c17a9a
8 changed files with 36 additions and 14 deletions

25
src/ac/discovery_cache.c Normal file
View File

@ -0,0 +1,25 @@
#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;
}