nl80211rs

This is a hand conversion of the 802.11 netlink interface public header file into a rust module. The style has been changed to conventional CamelCase and the prefix to the enum and consts values is removed; reasoning being that the prefix is redundant given crate and module namespaces.

crate::enum::CamelCaseUid

eg.

nl80211_commands::NL80211_CMD_START_AP

Becomes

nl80211rs::Commands::StartAp

The constants are held in their own module nl80211rs::constants. Constants are almost identical to the prepocessor directives, except they are not prefixed with NL80211_.

Progress