DecNetSocketAddress.st
author Claus Gittinger <cg@exept.de>
Wed, 21 May 2003 19:56:17 +0200
changeset 1227 863bea3be6d1
child 1259 0a557e59ea4a
permissions -rw-r--r--
initial checkin

"
 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 $'
! !