doc: open-tcp-stream-socket
authorMatt Birkholz <matt@birkholz.chandler.az.us>
Tue, 28 May 2013 18:17:41 +0000 (11:17 -0700)
committerMatt Birkholz <matt@birkholz.chandler.az.us>
Tue, 28 May 2013 18:17:41 +0000 (11:17 -0700)
This procedure no longer has buffer-size and line-translation parameters.
Thanks to nick.f.russell@gmail.com for noticing this.

doc/ref-manual/os-interface.texi

index 9adad8f4a9e0135963d8255b6035e13c7d74f9a7..d2e52d73c692b28e80704291f094929789ed72ef 100644 (file)
@@ -2395,7 +2395,7 @@ integer.  Port strings are decoded by the operating system using a
 table; for example, on unix the table is in @file{/etc/services}.
 Usually you will use a port string rather than a number.
 
-@deffn procedure open-tcp-stream-socket host-name service [buffer-size [line-translation]]
+@deffn procedure open-tcp-stream-socket host-name service
 @code{open-tcp-stream-socket} opens a connection to the host specified
 by @var{host-name}.  @var{Host-name} is looked up using the ordinary
 lookup rules for your computer.  The connection is established to the
@@ -2404,16 +2404,6 @@ service specified by @var{service}.  The returned value is an
 ordinary Scheme @acronym{I/O} procedures such as @code{read-char} and
 @code{write-char}.
 
-@var{Buffer-size} specifies the size of the read and write buffers used
-by the port; if this is unspecified or @code{#f}, the buffers will hold
-@code{4096} bytes.
-
-@var{Line-translation} specifies how end-of-line characters will be
-translated when reading or writing to the socket.  If this is
-unspecified or @code{#f}, then lines will be terminated by @sc{cr-lf},
-which is the standard for most internet protocols.  Otherwise, it must
-be a string, which specifies the line-ending character sequence to use.
-
 When you wish to close the connection, just use @code{close-port}.
 
 As an example, here is how you can open a connection to a web server: