BIND 10 trac2231, updated. 250da3f615ed6d09380dc2de7e6633017530bffd [2231] Show default timeout_usec values in implementation.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Sep 13 07:38:02 UTC 2012
The branch, trac2231 has been updated
via 250da3f615ed6d09380dc2de7e6633017530bffd (commit)
from 53e77f34ca655fc29320bba05a12a98355c365fb (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 250da3f615ed6d09380dc2de7e6633017530bffd
Author: Marcin Siodelski <marcin at isc.org>
Date: Thu Sep 13 09:37:37 2012 +0200
[2231] Show default timeout_usec values in implementation.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp/iface_mgr.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp/iface_mgr.cc b/src/lib/dhcp/iface_mgr.cc
index 9570cf5..9a082d2 100644
--- a/src/lib/dhcp/iface_mgr.cc
+++ b/src/lib/dhcp/iface_mgr.cc
@@ -785,7 +785,7 @@ IfaceMgr::send(const Pkt4Ptr& pkt)
boost::shared_ptr<Pkt4>
-IfaceMgr::receive4(uint32_t timeout_sec, uint32_t timeout_usec) {
+IfaceMgr::receive4(uint32_t timeout_sec, uint32_t timeout_usec /* = 0 */) {
// Sanity check for microsecond timeout.
if (timeout_usec >= 1000000) {
isc_throw(BadValue, "fractional timeout must be shorter than"
@@ -957,7 +957,7 @@ IfaceMgr::receive4(uint32_t timeout_sec, uint32_t timeout_usec) {
return (pkt);
}
-Pkt6Ptr IfaceMgr::receive6(uint32_t timeout_sec, uint32_t timeout_usec) {
+Pkt6Ptr IfaceMgr::receive6(uint32_t timeout_sec, uint32_t timeout_usec /* = 0 */ ) {
// Sanity check for microsecond timeout.
if (timeout_usec >= 1000000) {
isc_throw(BadValue, "fractional timeout must be shorter than"
More information about the bind10-changes
mailing list