Differences From Artifact [6f87686628]:
- File server.scm — part of check-in [3dffa0e4f9] at 2016-11-15 14:02:44 on branch rpc-transport — wrapped access to *runremote* has with mutes (user: bjbarcla, size: 11299) [annotate] [blame] [check-ins using]
To Artifact [301314345c]:
- File server.scm — part of check-in [acd56658eb] at 2016-11-16 16:06:03 on branch rpc-transport — did some cleanup (user: bjbarcla, size: 11302) [annotate] [blame] [check-ins using] [more...]
︙ | |||
278 279 280 281 282 283 284 | 278 279 280 281 282 283 284 285 286 287 288 | - + | (define (server:get-timeout) (let ((tmo (configf:lookup *configdat* "server" "timeout"))) (if (and (string? tmo) (string->number tmo)) (* 60 60 (string->number tmo)) ;; (* 3 24 60 60) ;; default to three days |