initial checkin
authorStefan Vogel <sv@exept.de>
Thu, 27 Mar 2003 14:29:58 +0100
changeset 1163 bf124794e128
parent 1162 c8ba14f81f13
child 1164 41a2750af1fa
initial checkin
NameLookupError.st
SocketAddressInfo.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NameLookupError.st	Thu Mar 27 14:29:58 2003 +0100
@@ -0,0 +1,24 @@
+"{ Package: 'stx:libbasic2' }"
+
+Error subclass:#NameLookupError
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'OS-Sockets'
+!
+
+
+!NameLookupError class methodsFor:'initialization'!
+
+initialize
+
+    NotifierString := 'Cannot resolve name'
+! !
+
+!NameLookupError class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/NameLookupError.st,v 1.1 2003-03-27 13:29:52 stefan Exp $'
+! !
+
+NameLookupError initialize!
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SocketAddressInfo.st	Thu Mar 27 14:29:58 2003 +0100
@@ -0,0 +1,89 @@
+"{ Package: 'stx:libbasic2' }"
+
+Object subclass:#SocketAddressInfo
+	instanceVariableNames:'domain type protocol socketAddress canonicalName flags'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'OS-Sockets'
+!
+
+
+!SocketAddressInfo methodsFor:'accessing'!
+
+canonicalName
+    "return the value of the instance variable 'canonicalName' (automatically generated)"
+
+    ^ canonicalName
+!
+
+canonicalName:something
+    "set the value of the instance variable 'canonicalName' (automatically generated)"
+
+    canonicalName := something.
+!
+
+domain
+    "return the value of the instance variable 'domain' (automatically generated)"
+
+    ^ domain
+!
+
+domain:something
+    "set the value of the instance variable 'domain' (automatically generated)"
+
+    domain := something.
+!
+
+flags
+    "return the value of the instance variable 'flags' (automatically generated)"
+
+    ^ flags
+!
+
+flags:something
+    "set the value of the instance variable 'flags' (automatically generated)"
+
+    flags := something.
+!
+
+protocol
+    "return the value of the instance variable 'protocol' (automatically generated)"
+
+    ^ protocol
+!
+
+protocol:something
+    "set the value of the instance variable 'protocol' (automatically generated)"
+
+    protocol := something.
+!
+
+socketAddress
+    "return the value of the instance variable 'socketAddress' (automatically generated)"
+
+    ^ socketAddress
+!
+
+socketAddress:something
+    "set the value of the instance variable 'socketAddress' (automatically generated)"
+
+    socketAddress := something.
+!
+
+type
+    "return the value of the instance variable 'type' (automatically generated)"
+
+    ^ type
+!
+
+type:something
+    "set the value of the instance variable 'type' (automatically generated)"
+
+    type := something.
+! !
+
+!SocketAddressInfo class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/SocketAddressInfo.st,v 1.1 2003-03-27 13:29:58 stefan Exp $'
+! !