Changeset 49564 in vbox for trunk/src/VBox/NetworkServices
- Timestamp:
- Nov 20, 2013 7:26:02 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 90758
- Location:
- trunk/src/VBox/NetworkServices/DHCP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/NetworkServices/DHCP/Config.h
r49563 r49564 503 503 static NetworkManager *getNetworkManager(); 504 504 505 int offer4Client(const Client& lease, uint32_t u32Xid, uint8_t *pu8ReqList, int cReqList);506 int ack(const Client& lease, uint32_t u32Xid, uint8_t *pu8ReqList, int cReqList);507 int nak(const Client& lease, uint32_t u32Xid);508 509 505 const RTNETADDRIPV4& getOurAddress() const; 510 506 const RTNETADDRIPV4& getOurNetmask() const; … … 526 522 NetworkManager(); 527 523 ~NetworkManager(); 524 525 int offer4Client(const Client& lease, uint32_t u32Xid, uint8_t *pu8ReqList, int cReqList); 526 int ack(const Client& lease, uint32_t u32Xid, uint8_t *pu8ReqList, int cReqList); 527 int nak(const Client& lease, uint32_t u32Xid); 528 528 529 529 int prepareReplyPacket4Client(const Client& client, uint32_t u32Xid); -
trunk/src/VBox/NetworkServices/DHCP/VBoxNetDHCP.cpp
r49563 r49564 98 98 protected: 99 99 bool handleDhcpMsg(uint8_t uMsgType, PCRTNETBOOTP pDhcpMsg, size_t cb); 100 bool handleDhcpReqDiscover(PCRTNETBOOTP pDhcpMsg, size_t cb);101 bool handleDhcpReqRequest(PCRTNETBOOTP pDhcpMsg, size_t cb);102 bool handleDhcpReqDecline(PCRTNETBOOTP pDhcpMsg, size_t cb);103 bool handleDhcpReqRelease(PCRTNETBOOTP pDhcpMsg, size_t cb);104 100 105 101 void debugPrintV(int32_t iMinLevel, bool fMsg, const char *pszFmt, va_list va) const;
Note:
See TracChangeset
for help on using the changeset viewer.