summaryrefslogtreecommitdiff
path: root/util/sock.h
diff options
context:
space:
mode:
Diffstat (limited to 'util/sock.h')
-rw-r--r--util/sock.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/sock.h b/util/sock.h
index 4b4290d2324..897be8a4fc4 100644
--- a/util/sock.h
+++ b/util/sock.h
@@ -115,10 +115,10 @@ namespace mongo {
return "/tmp/mongodb-" + BSONObjBuilder::numStr(port) + ".sock";
}
- inline void setSockTimeouts(int sock, int secs) {
+ inline void setSockTimeouts(int sock, double secs) {
struct timeval tv;
- tv.tv_sec = secs;
- tv.tv_usec = 0;
+ tv.tv_sec = (int)secs;
+ tv.tv_usec = (int)((long long)(secs*1000*1000) % (1000*1000));
bool report = logLevel > 3; // solaris doesn't provide these
DEV report = true;
bool ok = setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (char *) &tv, sizeof(tv) ) == 0;