Changeset 60

Show
Ignore:
Timestamp:
03/15/03 19:32:56 (5 years ago)
Author:
sam
Message:

Replicated Change 115 by sam@borg_greg on 2003/03/09 21:13:21<<<

o purge bsd ioctl stuff
o add nickname storage for wireless extensions use

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cvs-import/trunk/wlan/Makefile

    r34 r60  
    77include ${DEPTH}/Makefile.inc 
    88 
    9 SRCS_80211=     if_ieee80211subr.c if_ieee80211ioctl.c if_ieee80211wireless.c 
    10 OBJS_80211=     if_ieee80211subr.o if_ieee80211ioctl.o if_ieee80211wireless.o 
     9SRCS_80211=     if_ieee80211subr.c if_ieee80211wireless.c 
     10OBJS_80211=     if_ieee80211subr.o if_ieee80211wireless.o 
    1111SRCS=   ${SRCS_80211} if_media.c rc4.c 
    1212OBJS=   ${OBJS_80211} if_media.o rc4.o 
  • cvs-import/trunk/wlan/if_ieee80211.h

    r49 r60  
    587587        int                     ic_mgt_timer;   /* mgmt timeout */ 
    588588        int                     ic_inact_timer; /* inactivity timer wait */ 
     589        int                     ic_nicknamelen; 
     590        u_int8_t                ic_nickname[IEEE80211_NWID_LEN]; 
    589591        int                     ic_des_esslen; 
    590592        u_int8_t                ic_des_essid[IEEE80211_NWID_LEN]; 
     
    683685struct ieee80211channel *ieee80211_chan_find(struct ieee80211com *, u_int); 
    684686 
    685 extern  int ieee80211_ioctl(struct net_device *, struct ifreq *, int); 
    686  
    687687extern  const char *ether_sprintf(const u_int8_t *);            /* XXX */ 
    688688 
  • cvs-import/trunk/wlan/if_ieee80211subr.c

    r57 r60  
    148148        if (dev->get_stats == NULL) 
    149149                dev->get_stats = ieee80211_getstats; 
    150         if (dev->do_ioctl == NULL) 
    151                 dev->do_ioctl = ieee80211_ioctl; 
    152150#ifdef CONFIG_NET_WIRELESS 
    153151        if (dev->get_wireless_stats == NULL)