added a few lines to Http.moo

This commit is contained in:
hyunghwan.chung 2018-05-10 16:16:03 +00:00
parent 16b12e2dfc
commit a94ccf62b3

View File

@ -12,9 +12,12 @@ class HttpSocket(Socket)
class HttpServerSocket(ServerSocket)
{
var connections.
method initialize
{
super initialize.
### self.connections := LinkedList new.
}
method onSocketAccepted: clisck from: cliaddr
@ -22,12 +25,13 @@ class HttpServerSocket(ServerSocket)
'CLIENT accepted ..............' dump.
clisck dump.
cliaddr dump.
## clisck close.
### self.connections addLast: clisck.
}
method acceptedSocketClass
{
^HttpSocket
##^if (self currentAddress port == 80) { HttpSocket } else { HttpSocket }.
^HttpSocket.
}
}