31 lines
525 B
C++
31 lines
525 B
C++
#include "conntable.h"
|
|
#include "uthash.h"
|
|
#include "log.h"
|
|
|
|
struct conntable *conntable_create()
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void conntable_destory(struct conntable *table)
|
|
{
|
|
}
|
|
|
|
void conntable_add(struct conntable *table, uint64_t streamid, void *val)
|
|
{
|
|
}
|
|
|
|
void conntable_del(struct conntable *table, uint64_t streamid)
|
|
{
|
|
}
|
|
|
|
void *conntable_search_by_streamid(struct conntable *table, uint64_t streamid)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void *conntable_search_by_tuple4(struct conntable *table, struct tuple4 *tuplekey)
|
|
{
|
|
return NULL;
|
|
}
|