Changeset 13795


Ignore:
Timestamp:
02/01/10 17:06:43 (3 years ago)
Author:
BrainSlayer
Message:

ap serv implementation (test)

Location:
src/router
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/router/rc/Makefile

    r13763 r13795  
    151151ifeq ($(CONFIG_AOSS),y) 
    152152  CFLAGS += -DHAVE_AOSS 
     153endif 
     154ifeq ($(CONFIG_AP_SERV),y) 
     155  CFLAGS += -DHAVE_AP_SERV 
    153156endif 
    154157 
  • src/router/rc/services.c

    r13610 r13795  
    175175        handle = start_service_nofree_f("freeradius", handle); 
    176176#endif 
     177#ifdef HAVE_AP_SERV 
     178        handle = start_service_nofree_f("ap_serv", handle); 
     179#endif 
    177180//    if( handle ) 
    178181//      dlclose( handle ); 
     
    187190 
    188191        // stop_ses(); 
     192#ifdef HAVE_AP_SERV 
     193        handle = stop_service_nofree("ap_serv", handle); 
     194#endif 
    189195#ifdef HAVE_FREERADIUS 
    190196        handle = stop_service_nofree("freeradius", handle); 
     
    475481        void *handle = NULL; 
    476482 
     483#ifdef HAVE_AP_SERV 
     484        handle = startstop_nofree_f("ap_serv", handle); 
     485#endif 
    477486#ifdef HAVE_PPPOERELAY 
    478487        handle = startstop_nofree_f("pppoerelay", handle); 
  • src/router/services/Makefile

    r13763 r13795  
    2727OBJS = 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 \ 
    2828       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 
    3030 
    3131 
     
    224224ifeq ($(CONFIG_WIVIZ),y) 
    225225CFLAGS_EXTRA += -DHAVE_WIVIZ 
     226endif 
     227ifeq ($(CONFIG_AP_SERV),y) 
     228CFLAGS_EXTRA += -DHAVE_AP_SERV 
    226229endif 
    227230ifeq ($(CONFIG_REGISTER),y) 
Note: See TracChangeset for help on using the changeset viewer.