
(provide (quote tcp))

(defvar tcp-program-name "tcp" "\
A name of the program emulating open-network-stream function.")

(defun open-network-stream (name buffer host service) "\
Open a TCP connection for a service to a host.
Returns a subprocess-object to represent the connection.
Input and output work as for subprocesses; `delete-process' closes it.
Args are NAME BUFFER HOST SERVICE.
NAME is name for process.  It is modified if necessary to make it unique.
BUFFER is the buffer (or buffer-name) to associate with the process.
 Process output goes at end of that buffer, unless you specify
 an output stream or filter function to handle the output.
 BUFFER may be also nil, meaning that this process is not associated
 with any buffer
Third arg is name of the host to connect to.
Fourth arg SERVICE is name of the service desired, or an integer
 specifying a port number to connect to." (byte-code "Æ	
ÇÈ;ƒ ‚ É!&Ê!ˆ)‡" [proc name buffer tcp-program-name host service start-process "-h" "-s" int-to-string process-kill-without-query] 9))
