From owner-p4-projects@FreeBSD.ORG Tue Dec 7 02:33:50 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id DA6FD16A4D0; Tue, 7 Dec 2004 02:33:49 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B69AF16A4CE for ; Tue, 7 Dec 2004 02:33:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8AB843D31 for ; Tue, 7 Dec 2004 02:33:49 +0000 (GMT) (envelope-from sam@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id iB72XnlD031115 for ; Tue, 7 Dec 2004 02:33:49 GMT (envelope-from sam@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iB72XnZ4031112 for perforce@freebsd.org; Tue, 7 Dec 2004 02:33:49 GMT (envelope-from sam@freebsd.org) Date: Tue, 7 Dec 2004 02:33:49 GMT Message-Id: <200412070233.iB72XnZ4031112@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to sam@freebsd.org using -f From: Sam Leffler To: Perforce Change Reviews Subject: PERFORCE change 66601 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Dec 2004 02:33:50 -0000 http://perforce.freebsd.org/chv.cgi?CH=66601 Change 66601 by sam@sam_ebb on 2004/12/07 02:33:46 bring over ieee80211_information so it builds again Affected files ... .. //depot/projects/wifi/sys/dev/ray/if_rayvar.h#2 edit Differences ... ==== //depot/projects/wifi/sys/dev/ray/if_rayvar.h#2 (text+ko) ==== @@ -323,3 +323,41 @@ #ifndef RAY_MAP_CM #define RAY_MAP_CM(sc) #endif /* RAY_MAP_CM */ + +/* + * Management information element payloads + */ +union ieee80211_information { + char ssid[IEEE80211_NWID_LEN+1]; + struct rates { + u_int8_t *p; + } rates; + struct fh { + u_int16_t dwell; + u_int8_t set; + u_int8_t pattern; + u_int8_t index; + } fh; + struct ds { + u_int8_t channel; + } ds; + struct cf { + u_int8_t count; + u_int8_t period; + u_int8_t maxdur[2]; + u_int8_t dur[2]; + } cf; + struct tim { + u_int8_t count; + u_int8_t period; + u_int8_t bitctl; + /* u_int8_t pvt[251]; The driver needs to use this. */ + } tim; + struct ibss { + u_int16_t atim; + } ibss; + struct challenge { + u_int8_t *p; + u_int8_t len; + } challenge; +};