1
0
Fork 0

pharo: Turn the socket into binary mode

This commit is contained in:
Holger Hans Peter Freyther 2013-05-13 09:32:52 +02:00
parent 4f0b583d1c
commit 43c5a43e80
1 changed files with 1 additions and 0 deletions

View File

@ -21,6 +21,7 @@ OsmoAppConnection extend [
createConnection: aHostname port: aPort [
<category: 'pharo-porting'>
^(SocketStream openConnectionToHostNamed: aHostname port: aPort)
binary;
noTimeout;
yourself
]