31 lines
417 B
Plaintext
31 lines
417 B
Plaintext
note
|
|
description: "Summary description for {HTTP_OUTPUT_STREAM}."
|
|
author: ""
|
|
date: "$Date$"
|
|
revision: "$Revision$"
|
|
|
|
class
|
|
HTTP_OUTPUT_STREAM
|
|
|
|
create
|
|
make
|
|
|
|
feature {NONE} -- Initialization
|
|
|
|
make (a_socket: like target)
|
|
do
|
|
target := a_socket
|
|
end
|
|
|
|
target: TCP_STREAM_SOCKET
|
|
|
|
feature -- Basic operation
|
|
|
|
put_string (s: STRING)
|
|
-- Write string `s' to `target'
|
|
do
|
|
target.put_string (s)
|
|
end
|
|
|
|
end
|