The Trunk: Network-nice.63.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-nice.63.mcz

commits-2
Nicolas Cellier uploaded a new version of Network to project The Trunk:
http://source.squeak.org/trunk/Network-nice.63.mcz

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

Name: Network-nice.63
Author: nice
Time: 6 March 2010, 9:45:08.406 pm
UUID: 35e02cf0-42f3-a445-b012-a3e9f7814365
Ancestors: Network-ar.62

1) classify Network Exceptions in category Network-Exceptions
2) add SocketPrimitiveFailed from Cuis

=============== Diff against Network-ar.62 ===============

Item was changed:
  NetworkError subclass: #NoNetworkError
  instanceVariableNames: ''
  classVariableNames: ''
  poolDictionaries: ''
+ category: 'Network-Exceptions'!
- category: 'Network-Kernel'!
 
  !NoNetworkError commentStamp: 'mir 5/12/2003 18:17' prior: 0!
  Signals that no network was found. This could happen, e.g., on dial-up connection when no connection was established when Squeak tried to access it.
 
  !

Item was changed:
  Error subclass: #NetworkError
  instanceVariableNames: ''
  classVariableNames: ''
  poolDictionaries: ''
+ category: 'Network-Exceptions'!
- category: 'Network-Kernel'!
 
  !NetworkError commentStamp: 'mir 5/12/2003 18:12' prior: 0!
  Abstract super class for all network related exceptions.!

Item was changed:
  ----- Method: Socket>>primSocketReceiveDataAvailable: (in category 'primitives') -----
  primSocketReceiveDataAvailable: socketID
  "Return true if data may be available for reading from the current socket."
 
  <primitive: 'primitiveSocketReceiveDataAvailable' module: 'SocketPlugin'>
+ SocketPrimitiveFailed signal!
- self primitiveFailed
- !

Item was changed:
  NetworkError subclass: #NameLookupFailure
  instanceVariableNames: 'hostName'
  classVariableNames: ''
  poolDictionaries: ''
+ category: 'Network-Exceptions'!
- category: 'Network-Kernel'!
 
  !NameLookupFailure commentStamp: 'mir 5/12/2003 18:16' prior: 0!
  Signals that a name lookup operation failed.
 
  hostName hostName for which the name loopup failed
  !

Item was changed:
  NetworkError subclass: #ConnectionClosed
  instanceVariableNames: ''
  classVariableNames: ''
  poolDictionaries: ''
+ category: 'Network-Exceptions'!
- category: 'Network-Kernel'!
 
  !ConnectionClosed commentStamp: 'mir 5/12/2003 18:12' prior: 0!
  Signals a prematurely closed connection.
  !

Item was changed:
  NetworkError subclass: #ConnectionRefused
  instanceVariableNames: 'host port'
  classVariableNames: ''
  poolDictionaries: ''
+ category: 'Network-Exceptions'!
- category: 'Network-Kernel'!
 
  !ConnectionRefused commentStamp: 'mir 5/12/2003 18:14' prior: 0!
  Signals that a connection to the specified host and port was refused.
 
  host host which refused the connection
  port prot to which the connection was refused
  !

Item was changed:
  NetworkError subclass: #ConnectionTimedOut
  instanceVariableNames: ''
  classVariableNames: ''
  poolDictionaries: ''
+ category: 'Network-Exceptions'!
- category: 'Network-Kernel'!
 
  !ConnectionTimedOut commentStamp: 'mir 5/12/2003 18:14' prior: 0!
  Signals that a connection attempt timed out.
  !

Item was changed:
+ SystemOrganization addCategory: #'Network-Exceptions'!
  SystemOrganization addCategory: #'Network-Kernel'!
  SystemOrganization addCategory: #'Network-MailSending'!
  SystemOrganization addCategory: #'Network-Protocols'!
  SystemOrganization addCategory: #'Network-RFC822'!
  SystemOrganization addCategory: #'Network-RemoteDirectory'!
  SystemOrganization addCategory: #'Network-URI'!
  SystemOrganization addCategory: #'Network-UUID'!
  SystemOrganization addCategory: #'Network-Url'!

Item was added:
+ NetworkError subclass: #SocketPrimitiveFailed
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Network-Exceptions'!