Use INTERNET-ADDRESS/ANY (who knows if this is right) instead of
(THIS-HOST-ADDRESS).
This commit is contained in:
parent
7b285f1fd3
commit
899a7d6f30
4
ftpd.scm
4
ftpd.scm
|
@ -482,7 +482,7 @@
|
||||||
|
|
||||||
;; kludge
|
;; kludge
|
||||||
(bind-socket socket
|
(bind-socket socket
|
||||||
(internet-address->socket-address (this-host-address)
|
(internet-address->socket-address internet-address/any
|
||||||
0))
|
0))
|
||||||
(listen-socket socket 1)
|
(listen-socket socket 1)
|
||||||
|
|
||||||
|
@ -810,7 +810,7 @@
|
||||||
|
|
||||||
; Version
|
; Version
|
||||||
|
|
||||||
(define *ftpd-version* "$Revision: 1.14 $")
|
(define *ftpd-version* "$Revision: 1.15 $")
|
||||||
|
|
||||||
(define (copy-port->port-binary input-port output-port)
|
(define (copy-port->port-binary input-port output-port)
|
||||||
(let ((buffer (make-string *window-size*)))
|
(let ((buffer (make-string *window-size*)))
|
||||||
|
|
Loading…
Reference in New Issue