├── .gitignore ├── LICENSE ├── Makefile ├── README ├── db.txt ├── db2bin.py ├── dbparse.py ├── debian-example ├── changelog ├── compat ├── control ├── copyright ├── docs └── rules ├── linville.key.pub.pem ├── regulatory.bin ├── regulatory.bin.5 ├── sha1sum.txt ├── web └── Regulatory.py └── wireless-regdb.spec /.gitignore: -------------------------------------------------------------------------------- 1 | key.priv.pem 2 | dbparse.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/README -------------------------------------------------------------------------------- /db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/db.txt -------------------------------------------------------------------------------- /db2bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/db2bin.py -------------------------------------------------------------------------------- /dbparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/dbparse.py -------------------------------------------------------------------------------- /debian-example/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/debian-example/changelog -------------------------------------------------------------------------------- /debian-example/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian-example/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/debian-example/control -------------------------------------------------------------------------------- /debian-example/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/debian-example/copyright -------------------------------------------------------------------------------- /debian-example/docs: -------------------------------------------------------------------------------- 1 | README 2 | -------------------------------------------------------------------------------- /debian-example/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/debian-example/rules -------------------------------------------------------------------------------- /linville.key.pub.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/linville.key.pub.pem -------------------------------------------------------------------------------- /regulatory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/regulatory.bin -------------------------------------------------------------------------------- /regulatory.bin.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/regulatory.bin.5 -------------------------------------------------------------------------------- /sha1sum.txt: -------------------------------------------------------------------------------- 1 | dcce036e330cf160b677f3ec3d372020db204f92 db.txt 2 | -------------------------------------------------------------------------------- /web/Regulatory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/web/Regulatory.py -------------------------------------------------------------------------------- /wireless-regdb.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CTU-IIG/802.11p-wireless-regdb/HEAD/wireless-regdb.spec --------------------------------------------------------------------------------