mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
o add 11n knob
o gcc42 stuff
This commit is contained in:
parent
6efb4aa143
commit
b57206897c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=170534
@ -43,14 +43,17 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <err.h>
|
||||||
|
|
||||||
#define N(a) (sizeof(a)/sizeof(a[0]))
|
#define N(a) (sizeof(a)/sizeof(a[0]))
|
||||||
|
|
||||||
const char *progname;
|
const char *progname;
|
||||||
|
|
||||||
|
#define IEEE80211_MSG_11N 0x80000000 /* 11n mode debug */
|
||||||
#define IEEE80211_MSG_DEBUG 0x40000000 /* IFF_DEBUG equivalent */
|
#define IEEE80211_MSG_DEBUG 0x40000000 /* IFF_DEBUG equivalent */
|
||||||
#define IEEE80211_MSG_DUMPPKTS 0x20000000 /* IFF_LINK2 equivalant */
|
#define IEEE80211_MSG_DUMPPKTS 0x20000000 /* IFF_LINK2 equivalant */
|
||||||
#define IEEE80211_MSG_CRYPTO 0x10000000 /* crypto work */
|
#define IEEE80211_MSG_CRYPTO 0x10000000 /* crypto work */
|
||||||
@ -82,6 +85,7 @@ static struct {
|
|||||||
const char *name;
|
const char *name;
|
||||||
u_int bit;
|
u_int bit;
|
||||||
} flags[] = {
|
} flags[] = {
|
||||||
|
{ "11n", IEEE80211_MSG_11N },
|
||||||
{ "debug", IEEE80211_MSG_DEBUG },
|
{ "debug", IEEE80211_MSG_DEBUG },
|
||||||
{ "dumppkts", IEEE80211_MSG_DUMPPKTS },
|
{ "dumppkts", IEEE80211_MSG_DUMPPKTS },
|
||||||
{ "crypto", IEEE80211_MSG_CRYPTO },
|
{ "crypto", IEEE80211_MSG_CRYPTO },
|
||||||
@ -150,7 +154,7 @@ main(int argc, char *argv[])
|
|||||||
const char *ifname = "ath0";
|
const char *ifname = "ath0";
|
||||||
const char *cp, *tp;
|
const char *cp, *tp;
|
||||||
const char *sep;
|
const char *sep;
|
||||||
int c, op, i, unit;
|
int op, i, unit;
|
||||||
u_int32_t debug, ndebug;
|
u_int32_t debug, ndebug;
|
||||||
size_t debuglen, parentlen;
|
size_t debuglen, parentlen;
|
||||||
char oid[256], parent[256];
|
char oid[256], parent[256];
|
||||||
@ -173,8 +177,9 @@ main(int argc, char *argv[])
|
|||||||
snprintf(oid, sizeof(oid), "net.wlan.%d.%%parent", unit);
|
snprintf(oid, sizeof(oid), "net.wlan.%d.%%parent", unit);
|
||||||
#endif
|
#endif
|
||||||
parentlen = sizeof(parent);
|
parentlen = sizeof(parent);
|
||||||
if (sysctlbyname(oid, parent, &parentlen, NULL, 0) >= 0 &&
|
if (sysctlbyname(oid, parent, &parentlen, NULL, 0) < 0)
|
||||||
strncmp(parent, ifname, parentlen) == 0)
|
continue;
|
||||||
|
if (strncmp(parent, ifname, parentlen) == 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (unit == 10)
|
if (unit == 10)
|
||||||
@ -210,11 +215,12 @@ main(int argc, char *argv[])
|
|||||||
ndebug |= bit;
|
ndebug |= bit;
|
||||||
else {
|
else {
|
||||||
if (bit == 0) {
|
if (bit == 0) {
|
||||||
if (isdigit(*cp))
|
int c = *cp;
|
||||||
|
if (isdigit(c))
|
||||||
bit = strtoul(cp, NULL, 0);
|
bit = strtoul(cp, NULL, 0);
|
||||||
else
|
else
|
||||||
errx(1, "unknown flag %.*s",
|
errx(1, "unknown flag %.*s",
|
||||||
tp-cp, cp);
|
(int)(tp-cp), cp);
|
||||||
}
|
}
|
||||||
ndebug = bit;
|
ndebug = bit;
|
||||||
}
|
}
|
||||||
|
@ -43,14 +43,17 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <err.h>
|
||||||
|
|
||||||
#define N(a) (sizeof(a)/sizeof(a[0]))
|
#define N(a) (sizeof(a)/sizeof(a[0]))
|
||||||
|
|
||||||
const char *progname;
|
const char *progname;
|
||||||
|
|
||||||
|
#define IEEE80211_MSG_11N 0x80000000 /* 11n mode debug */
|
||||||
#define IEEE80211_MSG_DEBUG 0x40000000 /* IFF_DEBUG equivalent */
|
#define IEEE80211_MSG_DEBUG 0x40000000 /* IFF_DEBUG equivalent */
|
||||||
#define IEEE80211_MSG_DUMPPKTS 0x20000000 /* IFF_LINK2 equivalant */
|
#define IEEE80211_MSG_DUMPPKTS 0x20000000 /* IFF_LINK2 equivalant */
|
||||||
#define IEEE80211_MSG_CRYPTO 0x10000000 /* crypto work */
|
#define IEEE80211_MSG_CRYPTO 0x10000000 /* crypto work */
|
||||||
@ -82,6 +85,7 @@ static struct {
|
|||||||
const char *name;
|
const char *name;
|
||||||
u_int bit;
|
u_int bit;
|
||||||
} flags[] = {
|
} flags[] = {
|
||||||
|
{ "11n", IEEE80211_MSG_11N },
|
||||||
{ "debug", IEEE80211_MSG_DEBUG },
|
{ "debug", IEEE80211_MSG_DEBUG },
|
||||||
{ "dumppkts", IEEE80211_MSG_DUMPPKTS },
|
{ "dumppkts", IEEE80211_MSG_DUMPPKTS },
|
||||||
{ "crypto", IEEE80211_MSG_CRYPTO },
|
{ "crypto", IEEE80211_MSG_CRYPTO },
|
||||||
@ -150,7 +154,7 @@ main(int argc, char *argv[])
|
|||||||
const char *ifname = "ath0";
|
const char *ifname = "ath0";
|
||||||
const char *cp, *tp;
|
const char *cp, *tp;
|
||||||
const char *sep;
|
const char *sep;
|
||||||
int c, op, i, unit;
|
int op, i, unit;
|
||||||
u_int32_t debug, ndebug;
|
u_int32_t debug, ndebug;
|
||||||
size_t debuglen, parentlen;
|
size_t debuglen, parentlen;
|
||||||
char oid[256], parent[256];
|
char oid[256], parent[256];
|
||||||
@ -173,8 +177,9 @@ main(int argc, char *argv[])
|
|||||||
snprintf(oid, sizeof(oid), "net.wlan.%d.%%parent", unit);
|
snprintf(oid, sizeof(oid), "net.wlan.%d.%%parent", unit);
|
||||||
#endif
|
#endif
|
||||||
parentlen = sizeof(parent);
|
parentlen = sizeof(parent);
|
||||||
if (sysctlbyname(oid, parent, &parentlen, NULL, 0) >= 0 &&
|
if (sysctlbyname(oid, parent, &parentlen, NULL, 0) < 0)
|
||||||
strncmp(parent, ifname, parentlen) == 0)
|
continue;
|
||||||
|
if (strncmp(parent, ifname, parentlen) == 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (unit == 10)
|
if (unit == 10)
|
||||||
@ -210,11 +215,12 @@ main(int argc, char *argv[])
|
|||||||
ndebug |= bit;
|
ndebug |= bit;
|
||||||
else {
|
else {
|
||||||
if (bit == 0) {
|
if (bit == 0) {
|
||||||
if (isdigit(*cp))
|
int c = *cp;
|
||||||
|
if (isdigit(c))
|
||||||
bit = strtoul(cp, NULL, 0);
|
bit = strtoul(cp, NULL, 0);
|
||||||
else
|
else
|
||||||
errx(1, "unknown flag %.*s",
|
errx(1, "unknown flag %.*s",
|
||||||
tp-cp, cp);
|
(int)(tp-cp), cp);
|
||||||
}
|
}
|
||||||
ndebug = bit;
|
ndebug = bit;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user