/* 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 #include #include #include "actube.h" #include "wtplist.h" #include "dtls.h" #include "cw_log.h" #include "conf.h" #include "sock.h" #include "socklist.h" #include "db.h" #include "capwap_items.h" #include "capwap_cisco.h" #include "ac.h" int ac_run(); void alive_thread(void *data) { while(1){ sleep(5); db_ping(); } } #include "action.h" /* int readelem_vendor_specific_payload(struct conn *conn,struct cw_action * a,uint8_t *data,int len) { cw_action_t as,*af; as = *a; as.vendor_id = cw_get_dword(data); as.elem_id = cw_get_word(data+4); printf("Vendor Specific: %d, %d\n",as.vendor_id,as.elem_id); af = cw_actionlist_get(conn->msgtr,&as); if (!af) { printf("Msg unknown\n"); return 0; } printf("Found\n"); if (af->start) { af->start(conn,af,data+6,len-6); } return 1; } */ /* int readelem_cisco_rad_name(struct conn *conn,struct cw_action * a,uint8_t *data,int len) { printf("Here is the rad name reader\n"); int i; for (i=0; iid,d->str); } */ int main (int argc, const char * argv[]) { cw_log_name="AC-Tube"; read_config("ac.conf"); cw_log(LOG_INFO,"Starting AC-Tube, Name=%s, ID=%s",conf_acname,conf_acid); cw_dbg_opt_detail=DBG_DETAIL_ASC_DMP; cw_register_actions_cipwap_ac(&capwap_actions); /* struct avltree *avlt = capwap_actions.strelem; avltree_foreach_asc(avlt,avlprint,0); exit(0); */ ac_global_init(); /* db_init(); db_start(); db_ping(); pthread_t alth; pthread_create (&alth, NULL, alive_thread, (void *)0); */ int rc=0; dtls_init(); if (!socklist_init()) goto errX; if (!wtplist_init()) goto errX; rc = ac_run(); errX: wtplist_destroy(); socklist_destroy(); return rc; } void process_ctrl_packet(int index, struct sockaddr * addr, uint8_t * buffer, int len); #define AC_PROTO_CAPWAP 0 #define AC_PROTO_LWAPP 1 int ac_run() { if (!conf_listen_addrs_len){ cw_log(LOG_ERR,"Fatal error: No listen addresses found."); return 1; } /* it is important to create the unicast sockets first, * because when we create the mcast an bcast sockets next * we will look for already created sockets to find a * good unicast reply socket */ int i; for(i=0; imax) max=socklist[i].sockfd; } /* wait for an event */ int n; while((n=select(max+1, &fset, NULL, NULL, NULL)) < 0) { if (errno != EINTR) return n; } /* process the received packet */ for( i=0; i