1
0
Fork 0

pharo: Rename the StreamSocket to SocketStream for pharo

This commit is contained in:
Holger Hans Peter Freyther 2013-03-27 07:42:53 +01:00
parent d228bfd818
commit 131d2465f9
3 changed files with 8 additions and 4 deletions

View File

@ -5,6 +5,7 @@ GST_CONVERT = gst-convert
CONVERT_RULES = -r'Osmo.LogManager->LogManager' \
-r'Osmo.LogArea->LogArea' \
-r'Osmo.LogLevel->LogLevel' \
-r'Sockets.StreamSocket->SocketStream' \
-r'DateTime->DateAndTime' \
-r'(Duration milliseconds: ``@args1) -> (Duration milliSeconds: ``@args1)' \
-r'PP.PPCompositeParser->PPCompositeParser' \

View File

@ -16,3 +16,10 @@ OsmoUDPSocket extend [
] ensure: [net_exit signal]] fork.
]
]
OsmoAppConnection extend [
createConnection: aHostname port: aPort [
<category: 'pharo-porting'>
^ SocketStream openConnectionToHostNamed: aHostname port: aPort
]
]

View File

@ -1,7 +1,3 @@
Object subclass: StreamSocket [
<category: 'OsmoNetwork-Pharo'>
]
ByteArray extend [
shortAt: index [
<category: '*OsmoNetwork-Pharo'>