From fac0563aafd22ac3366a0dbecec5b3371f0920c7 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Sun, 27 Jul 2014 08:32:06 +0000 Subject: [PATCH] Added licence information, removed some out-comnmented code FossilOrigin-Name: 0aa9175cf55e9c0ea5880489d5489b92332dd2d52b148c4b23e1b9428c183d2d --- src/capwap/process_discovery_request.c | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/src/capwap/process_discovery_request.c b/src/capwap/process_discovery_request.c index 2ab3bb78..bf05c299 100644 --- a/src/capwap/process_discovery_request.c +++ b/src/capwap/process_discovery_request.c @@ -1,3 +1,21 @@ +/* + This file is part of libcapwap. + + libcapwap 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 //tube #include @@ -9,11 +27,10 @@ #include "cw_log.h" #include "cw_util.h" -//static int wtpinfo_readelem_discovery_req(struct wtpinfo *wtpinfo,int type,uint8_t* msgelem,int len) static int wtpinfo_readelem_discovery_req(void * w,int type,uint8_t* msgelem,int len) { struct wtpinfo * wtpinfo = (struct wtpinfo *)w; - cw_log_debug1("Process discovery req msgelem, type=%d, len=%d\n",type,len); + cw_log_debug1("Process discovery req msgelem, type=%d (%s), len=%d",type,cw_msgelemtostr(type),len); if (wtpinfo_readelem_discovery_type(wtpinfo,type,msgelem,len)) return 1; @@ -32,7 +49,6 @@ static int wtpinfo_readelem_discovery_req(void * w,int type,uint8_t* msgelem,int if (wtpinfo_readelem_wtp_radio_info(wtpinfo,type,msgelem,len)) return 1; - return 0; }