rename xxx_create() / xxx_destory() -> xxx_new() / xxx_free()
This commit is contained in:
@@ -9,8 +9,8 @@ extern "C"
|
||||
#include "session.h"
|
||||
|
||||
struct session_table;
|
||||
struct session_table *session_table_create();
|
||||
void session_table_destroy(struct session_table *table);
|
||||
struct session_table *session_table_new();
|
||||
void session_table_free(struct session_table *table);
|
||||
uint64_t session_table_get_count(struct session_table *table);
|
||||
|
||||
typedef void (*session_free_cb)(struct session *sess, void *arg);
|
||||
|
||||
Reference in New Issue
Block a user