Work on DTLS
FossilOrigin-Name: 5cc472aaf15b6e5dfe9beb3241c11f51af85dc3a29d94fee47992cbaf794fde2
This commit is contained in:
25
src/ac/discovery_cache.c
Normal file
25
src/ac/discovery_cache.c
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user