initial checkin
authorClaus Gittinger <cg@exept.de>
Wed, 21 May 2003 19:56:17 +0200
changeset 1227 863bea3be6d1
parent 1226 0114bd044aa9
child 1228 b766b9873ba6
initial checkin
DecNetSocketAddress.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DecNetSocketAddress.st	Wed May 21 19:56:17 2003 +0200
@@ -0,0 +1,74 @@
+"
+ COPYRIGHT (c) 2003 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+
+"{ Package: 'stx:libbasic2' }"
+
+SocketAddress variableByteSubclass:#DecNetSocketAddress
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'OS-Sockets'
+!
+
+!DecNetSocketAddress class methodsFor:'documentation'!
+
+copyright
+"
+ COPYRIGHT (c) 2003 by eXept Software AG
+              All Rights Reserved
+
+ This software is furnished under a license and may be used
+ only in accordance with the terms of that license and with the
+ inclusion of the above copyright notice.   This software may not
+ be provided or otherwise made available to, or used by, any
+ other person.  No title to or ownership of the software is
+ hereby transferred.
+"
+!
+
+documentation
+"
+    Instances of DecNetSocketAddress might eventually represent decnet socket addresses.
+    This is an unfinished sceleton (who knows if there will ever be any interest in decnet...)
+
+
+    [author:]
+        Claus Gittinger (cg@exept)
+
+    [see also:]
+
+    [instance variables:]
+
+    [class variables:]
+"
+! !
+
+!DecNetSocketAddress class methodsFor:'queries'!
+
+domainSymbol
+
+    ^ #'AF_DECnet'
+!
+
+obsoleteDomainSymbol
+    ^ #decnet
+!
+
+vwDomainSymbol
+    ^ #afDecnet
+! !
+
+!DecNetSocketAddress class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic2/DecNetSocketAddress.st,v 1.1 2003-05-21 17:56:17 cg Exp $'
+! !