Removed some out-cpommented code.
FossilOrigin-Name: 285df1a7553ccf3ea5ebcc40b0ffbd274209be3c4939842ee7a031b8b713e8c5
This commit is contained in:
parent
741ff669a1
commit
914138f2f3
@ -37,13 +37,6 @@
|
|||||||
#include "conf.h"
|
#include "conf.h"
|
||||||
#include "capwap/log.h"
|
#include "capwap/log.h"
|
||||||
|
|
||||||
/*
|
|
||||||
static struct wtpman ** wtplist = 0;
|
|
||||||
static pthread_mutex_t wtplist_mutex;
|
|
||||||
|
|
||||||
static int max_wtp_connections;
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
static struct connlist * connlist;
|
static struct connlist * connlist;
|
||||||
|
|
||||||
@ -73,11 +66,6 @@ void wtplist_unlock()
|
|||||||
void wtplist_destroy()
|
void wtplist_destroy()
|
||||||
{
|
{
|
||||||
connlist_destroy(connlist);
|
connlist_destroy(connlist);
|
||||||
|
|
||||||
/* if (wtplist)
|
|
||||||
free (wtplist);
|
|
||||||
pthread_mutex_destroy(&wtplist_mutex);
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -89,20 +77,6 @@ struct wtpman * wtplist_get(const struct sockaddr * addr)
|
|||||||
return 0;
|
return 0;
|
||||||
return conn->data;
|
return conn->data;
|
||||||
|
|
||||||
/*
|
|
||||||
int i;
|
|
||||||
for (i=0; i<max_wtp_connections; i++){
|
|
||||||
if (!wtplist[i])
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if ( sock_cmpaddr(&wtplist[i]->conn->addr,addr,1))
|
|
||||||
continue;
|
|
||||||
struct wtpman * wtpman = wtplist[i];
|
|
||||||
return wtpman;
|
|
||||||
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -110,19 +84,6 @@ struct wtpman * wtplist_add(struct wtpman * wtpman)
|
|||||||
{
|
{
|
||||||
wtpman->conn->data=wtpman;
|
wtpman->conn->data=wtpman;
|
||||||
return (struct wtpman*)connlist_add(connlist,wtpman->conn);
|
return (struct wtpman*)connlist_add(connlist,wtpman->conn);
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
int i;
|
|
||||||
for (i=0; i<max_wtp_connections; i++){
|
|
||||||
if (!wtplist[i]){
|
|
||||||
wtplist[i]=wtpman;
|
|
||||||
return wtpman;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
*/
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -131,18 +92,6 @@ void wtplist_remove(struct wtpman * wtpman)
|
|||||||
connlist_remove(connlist,wtpman->conn);
|
connlist_remove(connlist,wtpman->conn);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/*
|
|
||||||
printf("Remove wtpman %p\n",wtpman);
|
|
||||||
int i;
|
|
||||||
for (i=0; i<max_wtp_connections; i++){
|
|
||||||
if (wtplist[i]==wtpman){
|
|
||||||
printf("wtpman removed\n");
|
|
||||||
wtplist[i]=0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user