Changeset 13795
- Timestamp:
- 02/01/10 17:06:43 (3 years ago)
- Location:
- src/router
- Files:
-
- 1 added
- 3 edited
-
rc/Makefile (modified) (1 diff)
-
rc/services.c (modified) (3 diffs)
-
services/Makefile (modified) (2 diffs)
-
services/services/apserv.c (added)
Legend:
- Unmodified
- Added
- Removed
-
src/router/rc/Makefile
r13763 r13795 151 151 ifeq ($(CONFIG_AOSS),y) 152 152 CFLAGS += -DHAVE_AOSS 153 endif 154 ifeq ($(CONFIG_AP_SERV),y) 155 CFLAGS += -DHAVE_AP_SERV 153 156 endif 154 157 -
src/router/rc/services.c
r13610 r13795 175 175 handle = start_service_nofree_f("freeradius", handle); 176 176 #endif 177 #ifdef HAVE_AP_SERV 178 handle = start_service_nofree_f("ap_serv", handle); 179 #endif 177 180 // if( handle ) 178 181 // dlclose( handle ); … … 187 190 188 191 // stop_ses(); 192 #ifdef HAVE_AP_SERV 193 handle = stop_service_nofree("ap_serv", handle); 194 #endif 189 195 #ifdef HAVE_FREERADIUS 190 196 handle = stop_service_nofree("freeradius", handle); … … 475 481 void *handle = NULL; 476 482 483 #ifdef HAVE_AP_SERV 484 handle = startstop_nofree_f("ap_serv", handle); 485 #endif 477 486 #ifdef HAVE_PPPOERELAY 478 487 handle = startstop_nofree_f("pppoerelay", handle); -
src/router/services/Makefile
r13763 r13795 27 27 OBJS = services.o network.o firewall.o mssid.o wshaper.o ddns.o sysinit.o sysinit-$(ARCHITECTURE).o interface.o udhcpc.o mkfiles.o iptable.o defaults.o \ 28 28 bridgetools.o igmp.o wpa.o vlantagging.o httpd.o setuserpw.o anchorfree.o gpio.o mask.o reset_defaults.o vpn.o cron.o syslog.o redial.o radvd.o \ 29 pppoe.o pptpclient.o l2tp.o hwmon.o ttraff.o radiotimer.o processmonitor.o wland.o radiofunctions.o 29 pppoe.o pptpclient.o l2tp.o hwmon.o ttraff.o radiotimer.o processmonitor.o wland.o radiofunctions.o apserv.o 30 30 31 31 … … 224 224 ifeq ($(CONFIG_WIVIZ),y) 225 225 CFLAGS_EXTRA += -DHAVE_WIVIZ 226 endif 227 ifeq ($(CONFIG_AP_SERV),y) 228 CFLAGS_EXTRA += -DHAVE_AP_SERV 226 229 endif 227 230 ifeq ($(CONFIG_REGISTER),y)
Note: See TracChangeset
for help on using the changeset viewer.
