Changeset 42190 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jul 17, 2012 1:59:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/slirp/tftp.c
r42187 r42190 591 591 { 592 592 if (pTftpSession->OptionBlkSize.u64Value > UINT16_MAX) 593 r eturn -1;593 rc = VERR_INVALID_PARAMETER; 594 594 else 595 595 rc = tftpAddOptionToOACK(pData, m, "blksize", pTftpSession->OptionBlkSize.u64Value); 596 596 } 597 if (pTftpSession->OptionTSize.fRequested) 597 if ( RT_SUCCESS(rc) 598 && pTftpSession->OptionTSize.fRequested) 598 599 rc = tftpAddOptionToOACK(pData, m, "tsize", pTftpSession->OptionTSize.u64Value); 599 600
Note:
See TracChangeset
for help on using the changeset viewer.