The Trunk: Network-ul.110.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Network-ul.110.mcz

commits-2
Levente Uzonyi uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-ul.110.mcz

==================== Summary ====================

Name: Network-ul.110
Author: ul
Time: 5 March 2011, 11:40:21.12 am
UUID: 0a0f9edc-85d3-c049-b003-0dbd9059f0fd
Ancestors: Network-fbs.109

FixUnderscores

=============== Diff against Network-fbs.109 ===============

Item was changed:
  ----- Method: SocketStream class>>openConnectionToHost:port:timeout: (in category 'instance creation') -----
  openConnectionToHost: hostIP port: portNumber timeout: timeout
  | socket |
+ socket := Socket new.
- socket _ Socket new.
  socket connectTo: hostIP port: portNumber waitForConnectionFor: timeout.
  ^self on: socket!