UDSocketAddress.st
changeset 488 b0c17a5ff8ea
parent 113 c411109c7205
child 799 b109b39813b4
equal deleted inserted replaced
487:0230ee378075 488:b0c17a5ff8ea
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 SocketAddress subclass:#UDSocketAddress
    13 SocketAddress subclass:#UDSocketAddress
    14 	 instanceVariableNames:'name'
    14 	instanceVariableNames:'name'
    15 	 classVariableNames:''
    15 	classVariableNames:''
    16 	 poolDictionaries:''
    16 	poolDictionaries:''
    17 	 category:'ST80-Compatibility'
    17 	category:'ST80-Compatibility'
    18 !
    18 !
    19 
    19 
    20 !UDSocketAddress class methodsFor:'documentation'!
    20 !UDSocketAddress class methodsFor:'documentation'!
    21 
    21 
    22 copyright
    22 copyright
    29  inclusion of the above copyright notice.   This software may not
    29  inclusion of the above copyright notice.   This software may not
    30  be provided or otherwise made available to, or used by, any
    30  be provided or otherwise made available to, or used by, any
    31  other person.  No title to or ownership of the software is
    31  other person.  No title to or ownership of the software is
    32  hereby transferred.
    32  hereby transferred.
    33 "
    33 "
    34 !
       
    35 
       
    36 version
       
    37     ^ '$Header: /cvs/stx/stx/libbasic2/UDSocketAddress.st,v 1.3 1995-11-11 15:33:35 cg Exp $'
       
    38 !
    34 !
    39 
    35 
    40 documentation
    36 documentation
    41 "
    37 "
    42     Instances of UDSocketAddress represent unix-domain socket names.
    38     Instances of UDSocketAddress represent unix-domain socket names.
    80     name := pathName
    76     name := pathName
    81 ! !
    77 ! !
    82 
    78 
    83 !UDSocketAddress methodsFor:'queries'!
    79 !UDSocketAddress methodsFor:'queries'!
    84 
    80 
       
    81 address
       
    82     ^ nil
       
    83 !
       
    84 
    85 hostName
    85 hostName
    86     ^ 'localhost'
    86     ^ 'localhost'
    87 !
    87 !
    88 
    88 
    89 portOrName
    89 portOrName
    90     ^ name
    90     ^ name
    91 !
       
    92 
       
    93 address
       
    94     ^ nil
       
    95 ! !
    91 ! !
    96 
    92 
       
    93 !UDSocketAddress class methodsFor:'documentation'!
       
    94 
       
    95 version
       
    96     ^ '$Header: /cvs/stx/stx/libbasic2/UDSocketAddress.st,v 1.4 1997-01-27 11:38:15 cg Exp $'
       
    97 ! !