DecNetSocketAddress.st
author Claus Gittinger <cg@exept.de>
Thu, 09 Jun 2016 12:42:15 +0200
changeset 3903 5730e66fd49c
parent 1262 d3daddd36a99
child 3952 7a5dbb55cc10
permissions -rw-r--r--
class: HTMLPrinterStream changed: #initialize lazy package dependency
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1227
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2003 by eXept Software AG
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic2' }"
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
SocketAddress variableByteSubclass:#DecNetSocketAddress
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'OS-Sockets'
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!DecNetSocketAddress class methodsFor:'documentation'!
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
copyright
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
 COPYRIGHT (c) 2003 by eXept Software AG
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
              All Rights Reserved
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 This software is furnished under a license and may be used
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 other person.  No title to or ownership of the software is
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 hereby transferred.
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
"
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
!
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
documentation
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
"
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    Instances of DecNetSocketAddress might eventually represent decnet socket addresses.
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    This is an unfinished sceleton (who knows if there will ever be any interest in decnet...)
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    [author:]
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
        Claus Gittinger (cg@exept)
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    [see also:]
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    [instance variables:]
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    [class variables:]
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
"
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
! !
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
!DecNetSocketAddress class methodsFor:'queries'!
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
domainSymbol
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    ^ #'AF_DECnet'
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
!
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
obsoleteDomainSymbol
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
    ^ #decnet
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
!
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
vwDomainSymbol
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
    ^ #afDecnet
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
! !
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
!DecNetSocketAddress class methodsFor:'documentation'!
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
version
1262
d3daddd36a99 no longer callBack into sockets getHostName/getAddress code.
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
    73
    ^ '$Header: /cvs/stx/stx/libbasic2/DecNetSocketAddress.st,v 1.3 2003-07-09 15:31:37 cg Exp $'
1227
863bea3be6d1 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
! !