Network controller CRUD... :P
This commit is contained in:
parent
ed107c4daf
commit
ddebe2d4c7
8 changed files with 508 additions and 80 deletions
|
@ -56,6 +56,9 @@ public:
|
|||
((((uint64_t)e) & 0xffULL) << 8) |
|
||||
(((uint64_t)f) & 0xffULL) ) {}
|
||||
|
||||
MAC(const char *s) throw() { fromString(s); }
|
||||
MAC(const std::string &s) throw() { fromString(s.c_str()); }
|
||||
|
||||
MAC(const void *bits,unsigned int len) throw() { setTo(bits,len); }
|
||||
|
||||
MAC(const Address &ztaddr,uint64_t nwid) throw() { fromAddress(ztaddr,nwid); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue