TSG-13355 Steering Service搭建Project框架

This commit is contained in:
luwenpeng
2023-01-09 19:01:08 +08:00
commit 364e5ccaf9
20 changed files with 3062 additions and 0 deletions

30
common/src/conntable.cpp Normal file
View File

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