smalltalk
/
osmo-st-smpp
Archived
1
0
Fork 0

pharo: Add missing file and fix the SMPPConnection>>#createConnection

We want to deal with bytes and don't get the read timeouts!
This commit is contained in:
Holger Hans Peter Freyther 2014-07-16 08:02:55 +02:00
parent 8146afd9f6
commit c3f7517f6e
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,10 @@
SMPPConnection extend [
createConnection: aHostname port: aPort [
<category: 'socket'>
^(SocketStream openConnectionToHostNamed: aHostname port: aPort)
binary;
noTimeout;
yourself
]
]

View File

@ -0,0 +1 @@
"Compat code for Pharo"