* changed names: net:time => net-time, net:daytime => net-daytime
* created nettime-obsolete structure, mapping old names to new ones
This commit is contained in:
parent
ed0679bb85
commit
0bb8b7a28f
13
modules.scm
13
modules.scm
|
@ -308,6 +308,7 @@
|
||||||
httpd-read-options
|
httpd-read-options
|
||||||
rate-limit
|
rate-limit
|
||||||
string-lib ; STRING-JOIN
|
string-lib ; STRING-JOIN
|
||||||
|
i/o ; make-null-output-port
|
||||||
scheme)
|
scheme)
|
||||||
(files httpd-core))
|
(files httpd-core))
|
||||||
|
|
||||||
|
@ -689,8 +690,12 @@
|
||||||
;; nettime.scm is a module for requesting the time on remote machines,
|
;; nettime.scm is a module for requesting the time on remote machines,
|
||||||
;; using the time or the daytime protocol
|
;; using the time or the daytime protocol
|
||||||
(define-interface nettime-interface
|
(define-interface nettime-interface
|
||||||
|
(export net-time
|
||||||
|
net-daytime))
|
||||||
|
|
||||||
|
(define-interface nettime-obsolete-interface
|
||||||
(export net:time
|
(export net:time
|
||||||
net:daytime))
|
net:daytime))
|
||||||
|
|
||||||
|
|
||||||
(define-structure nettime nettime-interface
|
(define-structure nettime nettime-interface
|
||||||
|
@ -698,6 +703,12 @@
|
||||||
scheme)
|
scheme)
|
||||||
(files nettime))
|
(files nettime))
|
||||||
|
|
||||||
|
(define-structure nettime-obsolete nettime-obsolete-interface
|
||||||
|
(open scsh
|
||||||
|
scheme
|
||||||
|
nettime)
|
||||||
|
(files nettime-obsolete))
|
||||||
|
|
||||||
|
|
||||||
;;; Here is toothless.scm
|
;;; Here is toothless.scm
|
||||||
;;; Shouldn't the definitions be in an extra file? Andreas.
|
;;; Shouldn't the definitions be in an extra file? Andreas.
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
; maps obsolete nettime-procedure names to new nettime procedure names
|
||||||
|
; by Andreas Bernauer (2002)
|
||||||
|
|
||||||
|
(define net:time net-time)
|
||||||
|
(define net:daytime net-daytime)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;;; nettime.scm -- obtain the time on remote machines
|
;;; nettime.scm -- obtain the time on remote machines
|
||||||
;;
|
;;
|
||||||
;; $Id: nettime.scm,v 1.2 2001/11/15 11:12:24 mainzelm Exp $
|
;; $Id: nettime.scm,v 1.3 2002/05/12 05:32:28 interp Exp $
|
||||||
;;
|
;;
|
||||||
;; Please send suggestions and bug reports to <emarsden@mail.dotcom.fr>
|
;; Please send suggestions and bug reports to <emarsden@mail.dotcom.fr>
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
;; subtract 70 years' worth of seconds at the end, since the time
|
;; subtract 70 years' worth of seconds at the end, since the time
|
||||||
;; protocol returns the number of seconds since 1900, whereas Unix
|
;; protocol returns the number of seconds since 1900, whereas Unix
|
||||||
;; time is since 1970.
|
;; time is since 1970.
|
||||||
(define (net:time host tcp/udp)
|
(define (net-time host tcp/udp)
|
||||||
(let* ((hst-info (host-info host))
|
(let* ((hst-info (host-info host))
|
||||||
(srvc-info (service-info "time" "tcp"))
|
(srvc-info (service-info "time" "tcp"))
|
||||||
(sock (socket-connect protocol-family/internet
|
(sock (socket-connect protocol-family/internet
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
(- result 2208988800)))
|
(- result 2208988800)))
|
||||||
|
|
||||||
|
|
||||||
(define (net:daytime host tcp/udp)
|
(define (net-daytime host tcp/udp)
|
||||||
(let* ((hst-info (host-info host))
|
(let* ((hst-info (host-info host))
|
||||||
(srvc-info (service-info "daytime" "tcp"))
|
(srvc-info (service-info "daytime" "tcp"))
|
||||||
(sock (socket-connect protocol-family/internet
|
(sock (socket-connect protocol-family/internet
|
||||||
|
|
Loading…
Reference in New Issue