Displaying 3 results from an estimated 3 matches for "broadcast__".
Did you mean:
broadcast
2010 Mar 15
0
[PATCH] Updated the list of ignored files and fixed whitespace issues.
...distribute it and/or modify
@@ -57,11 +57,11 @@ class NICWrapper : public Manageable
~NICWrapper() {}
NICWrapper(const string &interfaceName__,
- const string &macaddr__,
- const string &ipaddr__,
- const string &netmask__,
- const string &broadcast__,
- int bandwidth__) {
+ const string &macaddr__,
+ const string &ipaddr__,
+ const string &netmask__,
+ const string &broadcast__,
+ int bandwidth__) {
interfaceName = interfaceName__;
mac...
2010 Apr 26
0
[PATCH matahari] Created the NetworkDevice agent.
...ICWrapper() {}
- NICWrapper(const NICWrapper&) {}
- ~NICWrapper() {}
-
- NICWrapper(const string &interfaceName__,
- const string &macaddr__,
- const string &ipaddr__,
- const string &netmask__,
- const string &broadcast__,
- int bandwidth__) {
- interfaceName = interfaceName__;
- macaddr = macaddr__;
- ipaddr = ipaddr__;
- netmask = netmask__;
- broadcast = broadcast__;
- bandwidth = bandwidth__;
- }
-
- static NICWrapper *getNIC(ManagementAgent *agent,
-...
2010 Apr 26
2
Patch supercedes previous patch...
In looking at the code I realized that the last of the HAL depenencies were
removed with this patch. So, I'm pushing an updated patch that contains
none of the HAL code in it.