/* This file is part of actube. actube is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. libcapwap is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Foobar. If not, see . */ #include #include #include #include #include #include #define MAX_WTPS 200 #include #include "wtplist.h" #include "cw/conn.h" #include "cw/sock.h" #include "conf.h" #include "cw/log.h" static struct connlist * connlist; int wtplist_init() { connlist = connlist_create(0); if (!connlist) return 0; return 1; } void wtplist_lock() { connlist_lock(connlist); } void wtplist_unlock() { connlist_unlock(connlist); } void wtplist_destroy() { connlist_destroy(connlist); } struct wtpman * wtplist_get(const struct sockaddr * addr) { struct conn * conn = connlist_get(connlist,addr); if (!conn) return 0; return conn->data; } struct wtpman * wtplist_add(struct wtpman * wtpman) { wtpman->conn->data=wtpman; return (struct wtpman*)connlist_add(connlist,wtpman->conn); } void wtplist_remove(struct wtpman * wtpman) { connlist_remove(connlist,wtpman->conn); return; }