You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
890 B
33 lines
890 B
#ifndef __CONLIST_H
|
|
#define __CONLIST_H
|
|
|
|
|
|
#include "conn.h"
|
|
#include "mavl.h"
|
|
#include "pthread.h"
|
|
|
|
struct connlist {
|
|
/* struct cw_Conn ** connlist; */
|
|
|
|
struct mavl *by_addr;
|
|
struct mavl *by_session_id;
|
|
|
|
|
|
int len;
|
|
pthread_mutex_t connlist_mutex;
|
|
};
|
|
|
|
|
|
struct connlist *connlist_create(int len, int cmpports);
|
|
void connlist_lock(struct connlist *cl);
|
|
void connlist_unlock(struct connlist *cl);
|
|
void conlist_destroy(struct connlist *cl);
|
|
struct cw_Conn *connlist_get(struct connlist *cl, const struct sockaddr *addr);
|
|
struct cw_Conn *connlist_add(struct connlist *cl, struct cw_Conn *conn);
|
|
void connlist_remove(struct connlist *cl, struct cw_Conn *conn);
|
|
void connlist_destroy(struct connlist *cl);
|
|
|
|
struct cw_Conn * connlist_get_by_session_id(struct connlist *cl, struct cw_Conn * conn);
|
|
struct cw_Conn * connlist_add_by_session_id(struct connlist * cl, struct cw_Conn * conn);
|
|
|
|
#endif
|
|
|