Changeset 79762 in vbox for trunk/src/VBox
- Timestamp:
- Jul 14, 2019 3:51:10 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/Dhcpd/DhcpOptions.cpp
r79761 r79762 72 72 } 73 73 74 dst[cbOrig+1] = cbValue;74 dst[cbOrig+1] = (uint8_t)cbValue; 75 75 return VINF_SUCCESS; 76 76 } … … 182 182 183 183 template <typename a_Type> 184 staticint DhcpOption::parseList(std::vector<a_Type> &aList, const char *pcszValue)184 /*static*/ int DhcpOption::parseList(std::vector<a_Type> &aList, const char *pcszValue) 185 185 { 186 186 std::vector<a_Type> vecTmp; … … 231 231 /** ASSUME that uint8_t means hex byte strings. */ 232 232 template <> 233 staticint DhcpOption::parseList(std::vector<uint8_t> &aList, const char *pcszValue)233 /*static*/ int DhcpOption::parseList(std::vector<uint8_t> &aList, const char *pcszValue) 234 234 { 235 235 uint8_t abBuf[256];
Note:
See TracChangeset
for help on using the changeset viewer.