IPSocketAddress.st
author Claus Gittinger <cg@exept.de>
Sat, 02 May 2020 21:40:13 +0200
changeset 5476 7355a4b11cb6
parent 5463 c6a3af27138d
permissions -rw-r--r--
#FEATURE by cg class: Socket class added: #newTCPclientToHost:port:domain:domainOrder:withTimeout: changed: #newTCPclientToHost:port:domain:withTimeout:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5463
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
     1
"{ Encoding: utf8 }"
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
     2
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
 COPYRIGHT (c) 1995 by Claus Gittinger
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
     5
	      All Rights Reserved
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 This software is furnished under a license and may be used
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
 hereby transferred.
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"
1023
12bc2a0f60b5 + bytesToName:
Claus Gittinger <cg@exept.de>
parents: 818
diff changeset
    14
"{ Package: 'stx:libbasic2' }"
12bc2a0f60b5 + bytesToName:
Claus Gittinger <cg@exept.de>
parents: 818
diff changeset
    15
3508
b1824372124b class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3228
diff changeset
    16
"{ NameSpace: Smalltalk }"
b1824372124b class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3228
diff changeset
    17
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
    18
SocketAddress variableByteSubclass:#IPSocketAddress
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
    19
	instanceVariableNames:''
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    20
	classVariableNames:'CacheInvalidationTimeInterval AddressCacheSize NameCacheSize'
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
    21
	poolDictionaries:''
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    22
	category:'OS-Sockets'
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    25
IPSocketAddress class instanceVariableNames:'addrCache nameCache'
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    26
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    27
"
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    28
 No other class instance variables are inherited by this class.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    29
"
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    30
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    31
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
!IPSocketAddress class methodsFor:'documentation'!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
copyright
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 COPYRIGHT (c) 1995 by Claus Gittinger
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
    37
	      All Rights Reserved
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
 This software is furnished under a license and may be used
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
 only in accordance with the terms of that license and with the
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
 inclusion of the above copyright notice.   This software may not
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
 be provided or otherwise made available to, or used by, any
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
 other person.  No title to or ownership of the software is
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
 hereby transferred.
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
documentation
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
"
111
92392ae9a0f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 100
diff changeset
    50
    Instances of IPSocketAddress represent tcp/ip-domain socket addresses.
92392ae9a0f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 100
diff changeset
    51
    These consist of an ip address (4 bytes) and a port number.
92392ae9a0f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 100
diff changeset
    52
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    53
    Notice that for performance, name and address translations are cached here
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    54
    for some time, in order to speed up heavy lookup such as when operating a webserver or similar
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    55
    application which does many address-to-hostname translations.
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    57
    For systems, when the name translation is fast (unix), you may want to disable it,
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    58
    as it prevents new addresses to be detected for some time (for example, if the own address
3994
22466af8bcbc #OTHER by mawalch
mawalch
parents: 3986
diff changeset
    59
    changes due to a new dhcp address being acquired).
4678
28f9a9f71751 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4618
diff changeset
    60
    You can also change the caching-interval time 
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    61
    (see caching protocol, flush*Cache, cachingIntervalTime, *CacheSize).
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    62
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    63
    [author:]
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    64
        Claus Gittinger
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
! !
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    68
!IPSocketAddress class methodsFor:'instance creation'!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    69
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    70
addressString:aString
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
    71
    "convert an address given in a dot notation like '123.456.78.9'.
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
    72
     Handles IPv6SocketAddresses too (if the string contains colons or brackets)."
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    73
3508
b1824372124b class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3228
diff changeset
    74
    (self == IPSocketAddress and:[aString includesAny:'[:']) ifTrue:[
b1824372124b class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3228
diff changeset
    75
        ^ IPv6SocketAddress hostAddress:(IPv6SocketAddress hostAddressFromString:aString).
b1824372124b class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3228
diff changeset
    76
    ].
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    77
    ^ self hostAddress:(self hostAddressFromString:aString).
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    78
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    79
    "
1585
32eba58e5498 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
    80
     IPSocketAddress addressString:'1.2.3.4'
3508
b1824372124b class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3228
diff changeset
    81
     IPSocketAddress addressString:'2001:4dd0:ffa3::1'
b1824372124b class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3228
diff changeset
    82
     IPSocketAddress addressString:'[2001:4dd0:ffa3::1]'
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    83
    "
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
    84
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
    85
    "Modified (comment): / 13-06-2018 / 10:59:41 / Claus Gittinger"
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    86
!
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    87
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    88
allForHostName:name serviceName:portNrOrName type:socketTypeSymbol
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
    89
    "get a collection of new instances, given a hostname, port or service and type.
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
    90
     Multi-homed hosts return more than one entry.
4339
499b62578e95 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4101
diff changeset
    91
     Redefined to cache the result of the name-lookup.
499b62578e95 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4101
diff changeset
    92
4618
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
    93
     Take care, this resolves to IPv4-addresses only!!
4339
499b62578e95 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4101
diff changeset
    94
     Use SocketAddress to resolve to both IPv4 and IPv6-addresses."
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    95
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    96
    |addressList|
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    97
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    98
    portNrOrName isString ifTrue:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    99
        ^ super allForHostName:name serviceName:portNrOrName type:socketTypeSymbol
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   100
    ].
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   101
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   102
    addressList := self addressCacheAt:name.
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   103
    addressList notNil ifTrue:[
4618
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   104
        addressList := addressList collect:[:eachSocketAddress|
4339
499b62578e95 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4101
diff changeset
   105
                                eachSocketAddress copy
499b62578e95 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4101
diff changeset
   106
                                    port:(portNrOrName ? 0);
499b62578e95 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4101
diff changeset
   107
                                    yourself
2172
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
   108
                            ].
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   109
    ] ifFalse:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   110
        addressList := super allForHostName:name serviceName:portNrOrName type:socketTypeSymbol.
3582
05524be1015d class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
   111
        addressList notNil ifTrue:[
05524be1015d class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
   112
            self addressCacheAt:name put:(addressList deepCopy).
05524be1015d class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
   113
        ].
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   114
    ].
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   115
    ^ addressList
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   116
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   117
    "
4618
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   118
     IPSocketAddress allForHostName:nil serviceName:10 type:#stream
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   119
     SocketAddress allForHostName:'localhost' serviceName:10 type:#stream
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   120
     IPSocketAddress allForHostName:'localhost' serviceName:'echo' type:#datagram
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   121
     IPSocketAddress allForHostName:'www.google.com' serviceName:80 type:nil
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   122
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   123
     IPSocketAddress allForHostName:'localhost' serviceName:'echo' type:#datagram
c68aee83ba0b #DOCUMENTATION by mawalch
mawalch
parents: 4339
diff changeset
   124
     IPv6SocketAddress allForHostName:'localhost' serviceName:'echo' type:#datagram
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   125
    "
2172
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
   126
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
   127
    "Modified: / 17-06-2009 / 15:21:00 / sr"
4339
499b62578e95 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 4101
diff changeset
   128
    "Modified (comment): / 21-02-2017 / 20:59:52 / stefan"
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   129
    "Modified (comment): / 13-06-2018 / 11:00:04 / Claus Gittinger"
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   130
!
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   131
5463
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   132
hostAddress:aByteArray
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   133
    aByteArray size = 16 ifTrue:[
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   134
        ^ IPv6SocketAddress new hostAddress:aByteArray.
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   135
    ].
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   136
    ^ self new hostAddress:aByteArray.
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   137
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   138
    "Created: / 02-03-2020 / 19:03:44 / Stefan Vogel"
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   139
!
c6a3af27138d #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 5432
diff changeset
   140
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   141
localHost
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   142
    "get a new instance representing the local-host address as seen internally"
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   143
3070
58c5d590c68e class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3057
diff changeset
   144
    ^ self hostAddress:self local
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   145
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   146
    "
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   147
     self localHost
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   148
     self localHost hostName
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   149
    "
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   150
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   151
    "Modified: / 04-06-2007 / 21:34:22 / cg"
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   152
!
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   153
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   154
localHostAddress
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   155
    "NO NO NEVER!!
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   156
     Do not use this, because:
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   157
     1. It does not work on hosts that get their IP address via dhcp (at least on unix/linux)
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   158
     2. Usually OperatingSystem>>#getHostName does not return a fully qualified domain name
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   159
     3. This does not work well on multi-homed hosts"
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   160
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   161
    <resource: #obsolete>
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   162
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   163
    self obsoleteMethodWarning:'Do not use this method'.
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   164
    ^ self hostName:(OperatingSystem getHostName).
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   165
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   166
    "
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   167
      self localHostAddress
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   168
    "
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   169
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   170
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   171
    "Modified: / 04-06-2007 / 21:17:25 / cg"
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   172
! !
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   173
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   174
!IPSocketAddress class methodsFor:'addressing'!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   175
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   176
anyAddress
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   177
    "return the anonymous address's bytes"
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   178
1281
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   179
    ^ #[0 0 0 0]
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   180
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   181
    "Modified (comment): / 13-06-2018 / 11:00:59 / Claus Gittinger"
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   182
!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   183
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   184
anyPort
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   185
    "return the anon port number"
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   186
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   187
    ^ 0
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   188
!
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
1281
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   190
broadcastAddress
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   191
    "return the broadcast address"
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   192
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   193
    ^ #[255 255 255 255]
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   194
!
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   195
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   196
firstUnreservedPort
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   197
    "return the first unreserved port number"
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   198
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   199
    ^ 1024
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   200
!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   201
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   202
local
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   203
    "return IN_ADDR_ANY, the address matching any local address"
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   204
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   205
    ^ #[127 0 0 1]
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   206
!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   207
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   208
maxPort
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   209
    "return the maximum port number"
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   210
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   211
    ^ 16rffff
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   212
!
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   213
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   214
thisHost
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   215
    <resource: #obsolete>
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   216
    "return the bytes of IN_ADDR_ANY, the address matching any local address"
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   217
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   218
    self obsoleteMethodWarning.
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   219
    ^ self anyAddress
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   220
! !
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   221
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   222
!IPSocketAddress class methodsFor:'caching'!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   223
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   224
addressCacheAt:aHostName
4735
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   225
    "retrieve a cached address for aHostName,
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   226
     or nil if not in the cache"
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   227
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   228
    |addrAndTime addressList time|
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   229
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   230
    addrCache notNil ifTrue:[
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   231
        addrAndTime := addrCache at:aHostName ifAbsent:nil.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   232
        addrAndTime notNil ifTrue:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   233
            addressList := addrAndTime key.
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   234
            time := addrAndTime value.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   235
            ((Timestamp now) secondDeltaFrom:time) > self cacheInvalidationTimeInterval ifFalse:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   236
                ^ addressList.
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   237
            ]
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   238
        ].
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   239
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   240
    ^ nil
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   241
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   242
    "Modified: / 26-04-2007 / 11:21:37 / cg"
4735
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   243
    "Modified (comment): / 19-09-2018 / 12:28:21 / Claus Gittinger"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   244
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   245
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   246
addressCacheAt:aName put:anAddressList
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   247
    "put a aHostName -> list-of-addresses into the cache"
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   248
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   249
    (addrCache isNil or:[addrCache size > self addressCacheSize]) ifTrue:[
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   250
        addrCache := Dictionary new.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   251
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   252
    
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   253
    addrCache at:aName put:(anAddressList -> Timestamp now).
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   254
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   255
    "Modified: / 26-04-2007 / 11:23:26 / cg"
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   256
    "Modified (comment): / 13-06-2018 / 11:04:00 / Claus Gittinger"
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   257
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   258
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   259
addressCacheSize
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   260
    "get the number of cached name entries.
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   261
     If never set explicitly, the default is 50 names"
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   262
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   263
    ^ AddressCacheSize ? 50
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   264
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   265
    "Created: / 26-04-2007 / 11:22:40 / cg"
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   266
    "Modified (comment): / 13-06-2018 / 11:02:49 / Claus Gittinger"
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   267
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   268
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   269
addressCacheSize:aNumber
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   270
    "set the number of cached name entries.
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   271
     If never set explicitly, the default is 50 names"
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   272
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   273
    AddressCacheSize := aNumber
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   274
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   275
    "Created: / 26-04-2007 / 11:24:05 / cg"
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   276
    "Modified (comment): / 13-06-2018 / 11:02:57 / Claus Gittinger"
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   277
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   278
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   279
cacheInvalidationTimeInterval
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   280
    "return the cache invalidation interval.
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   281
     If never set explicitly, the default is 30 seconds"
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   282
     
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   283
    ^ CacheInvalidationTimeInterval ? 30
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   284
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   285
    "Created: / 26-04-2007 / 11:21:31 / cg"
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   286
    "Modified (comment): / 13-06-2018 / 11:01:55 / Claus Gittinger"
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   287
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   288
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   289
cacheInvalidationTimeInterval:seconds
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   290
    "set the cache invalidation interval.
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   291
     If never set explicitly, the default is 30 seconds"
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   292
     
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   293
    CacheInvalidationTimeInterval := seconds
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   294
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   295
    "Created: / 26-04-2007 / 11:29:28 / cg"
4679
f3716e8f68d5 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4678
diff changeset
   296
    "Modified (comment): / 13-06-2018 / 11:02:07 / Claus Gittinger"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   297
!
1261
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   298
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   299
flushAddressCache
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   300
    addrCache := nil
1261
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   301
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   302
    "
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   303
     self flushAddressCache
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   304
    "
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   305
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   306
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   307
flushNameCache
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   308
    nameCache := Dictionary new.
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   309
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   310
    "
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   311
     self flushNameCache
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   312
    "
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   313
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   314
    "Modified: / 26-04-2007 / 11:25:32 / cg"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   315
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   316
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   317
nameCacheAt:aHostAddress
4735
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   318
    "return a cached hostname, given a host address.
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   319
     The cache is flushed after cacheInvalidationTime seconds"
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   320
     
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   321
    |nameAndTime name time|
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   322
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   323
    nameCache notNil ifTrue:[
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   324
        nameAndTime := nameCache at:aHostAddress ifAbsent:nil.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   325
        nameAndTime notNil ifTrue:[
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   326
            name := nameAndTime key.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   327
            time := nameAndTime value.
3228
00bf7f052ee1 class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3136
diff changeset
   328
            (Timestamp now secondDeltaFrom:time) > self cacheInvalidationTimeInterval ifFalse:[
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   329
                ^ name.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   330
            ]
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   331
        ].
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   332
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   333
    ^ nil
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   334
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   335
    "Modified: / 26-04-2007 / 11:25:11 / cg"
4735
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   336
    "Modified (comment): / 19-09-2018 / 12:29:30 / Claus Gittinger"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   337
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   338
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   339
nameCacheAt:aHostAddress put:aName
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   340
    (nameCache isNil or:[nameCache size > self nameCacheSize]) ifTrue:[
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   341
        nameCache := Dictionary new.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   342
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   343
    
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   344
    nameCache at:aHostAddress put:(aName -> Timestamp now).
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   345
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   346
    "Modified: / 26-04-2007 / 11:23:35 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   347
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   348
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   349
nameCacheSize
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   350
    ^ NameCacheSize ? 50
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   351
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   352
    "Created: / 26-04-2007 / 11:22:44 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   353
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   354
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   355
nameCacheSize:aNumber
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   356
    NameCacheSize := aNumber
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   357
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   358
    "Created: / 26-04-2007 / 11:23:49 / cg"
1261
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   359
! !
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   360
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   361
!IPSocketAddress class methodsFor:'conversion'!
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   362
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   363
hostAddressFromString:aString
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   364
    "convert an address given in a dot notation like 123.456.78.9"
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   365
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   366
    |components bytes|
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   367
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   368
    components := aString asCollectionOfSubstringsSeparatedBy:$..
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   369
    components size ~~ 4 ifTrue:[
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   370
        ^ NameLookupError raiseRequestWith:aString errorString:' - bad address string'.
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   371
    ].
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   372
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   373
    bytes := components collect:[:eachComponent| 
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   374
        Integer readFromString:eachComponent onError:[^ NameLookupError raiseRequestWith:aString errorString:' - bad address string'].
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   375
    ].
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   376
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   377
    ^ bytes asByteArray.
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   378
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   379
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   380
    "
4735
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   381
     IPSocketAddress hostAddressFromString:'1.2.3.4'
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   382
     IPSocketAddress hostAddressFromString:'255.255.255.255'
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   383
    "
4735
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   384
c9e192300476 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4679
diff changeset
   385
    "Modified (comment): / 19-09-2018 / 12:29:58 / Claus Gittinger"
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   386
! !
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   387
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   388
!IPSocketAddress class methodsFor:'queries'!
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   389
3052
e690209a5c52 changes #domainSymbol to #domain fpr comaptibility with Socket
Stefan Vogel <sv@exept.de>
parents: 3049
diff changeset
   390
domain
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   391
    ^ #'AF_INET'
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   392
!
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   393
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   394
hostAddressLen
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   395
    "answer the number of bytes of the host address"
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   396
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   397
    ^ 4
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   398
!
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   399
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   400
obsoleteDomainSymbol
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   401
    ^ #inet
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   402
!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   403
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   404
vwDomainSymbol
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   405
    ^ #afInet
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   406
! !
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   407
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   408
!IPSocketAddress methodsFor:'accessing'!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   409
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   410
hostAddress
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   411
    ^ (ByteArray new:4) replaceFrom:1 to:4 with:self startingAt:5
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   412
!
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   413
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   414
hostAddress:aByteArray
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   415
    ^ self replaceFrom:5 to:8 with:aByteArray startingAt:1
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   416
!
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   417
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   418
port
3772
ea7a85e2bb8f #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3582
diff changeset
   419
    ^ self unsignedInt16At:3 MSB:true
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   420
!
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   421
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   422
port:aPortNr
3772
ea7a85e2bb8f #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 3582
diff changeset
   423
    self unsignedInt16At:3 put:aPortNr MSB:true
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   424
! !
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   425
3510
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   426
!IPSocketAddress methodsFor:'comparing'!
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   427
3518
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   428
sameHostAddress:aSocketAddress
3510
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   429
    "answer true, if myself and aSocketAddress have the same host address
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   430
     (but possibly different ports)."
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   431
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   432
    ^ aSocketAddress class == self class 
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   433
        and:[self sameContentsFrom:5 to:9 as:aSocketAddress startingAt:5]
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   434
! !
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   435
3057
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   436
!IPSocketAddress methodsFor:'converting'!
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   437
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   438
asIPv4SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   439
    ^ self
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   440
!
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   441
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   442
asIPv6SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   443
    "convert a IPv4 address to a mapped IPv6SocketAddress"
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   444
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   445
    |ipv6|
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   446
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   447
    ipv6 := IPv6SocketAddress new.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   448
    ipv6
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   449
        port:self port;
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   450
        at:19 put:16rff;
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   451
        at:20 put:16rff.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   452
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   453
    ipv6 replaceFrom:21 to:24 with:self startingAt:5.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   454
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   455
    ^ ipv6.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   456
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   457
    "
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   458
        (self localHost port:80) asIPv6SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   459
        (self localHost port:80) asIPv6SocketAddress asIPv4SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   460
    "
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   461
! !
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   462
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   463
!IPSocketAddress methodsFor:'obsolete'!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   464
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   465
address
1452
4456e3f3ddb4 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 1366
diff changeset
   466
    <resource: #obsolete>
4456e3f3ddb4 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 1366
diff changeset
   467
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   468
    ^ self hostAddress
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   469
! !
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   470
770
32ad77c9ed74 added #printOn:
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
   471
!IPSocketAddress methodsFor:'printing & storing'!
32ad77c9ed74 added #printOn:
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
   472
1333
d9ebcc42524c printing refactored
penk
parents: 1281
diff changeset
   473
printAddressOn:aStream
d9ebcc42524c printing refactored
penk
parents: 1281
diff changeset
   474
    |i1 i2|
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   475
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   476
    i1 := self adrBytesStart.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   477
    i2 := i1 + self numAdrBytes - 1.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   478
    i1 to:i2 do:[:i | 
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   479
        i ~~ i1 ifTrue:[
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   480
            aStream nextPut:$.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   481
        ].
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   482
        (self at:i) printOn:aStream
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   483
    ].
4100
808dd4ff3b12 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
   484
808dd4ff3b12 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
   485
    "
808dd4ff3b12 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
   486
     String streamContents:[:s | (IPSocketAddress hostName:'localhost') printAddressOn:s]
808dd4ff3b12 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
   487
     (IPSocketAddress hostName:'localhost') printString
4101
6403cd829a72 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4100
diff changeset
   488
     (IPSocketAddress hostName:'localhost') hostAddress printString
4100
808dd4ff3b12 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
   489
     (IPSocketAddress hostName:'exeptn') printString
5432
60308c7e388d #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 4735
diff changeset
   490
     (IPSocketAddress hostName:'exeptn') hostAddress printString
4100
808dd4ff3b12 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3994
diff changeset
   491
    "
5432
60308c7e388d #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 4735
diff changeset
   492
60308c7e388d #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 4735
diff changeset
   493
    "Modified (comment): / 24-01-2020 / 20:24:01 / stefan"
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   494
! !
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   495
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   496
!IPSocketAddress methodsFor:'private'!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   497
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   498
adrBytesStart
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   499
    ^ 5
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   500
!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   501
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   502
numAdrBytes
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   503
    ^ 4
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   504
! !
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   505
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   506
!IPSocketAddress methodsFor:'queries'!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   507
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   508
hostName
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   509
    |addr name|
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   510
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   511
    addr := self hostAddress.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   512
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   513
    name := self class nameCacheAt:addr.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   514
    name notNil ifTrue:[^ name].
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   515
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   516
    name := super hostName.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   517
    name notNil ifTrue:[
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   518
        self class nameCacheAt:addr put:name.
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   519
    ].
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   520
    ^ name
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   521
!
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   522
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   523
netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   524
    "If this is an address mask: answer the number of mask bits in the address mask"
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   525
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   526
    |sz bI lowBit lowBitHere hostAddress|
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   527
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   528
    hostAddress := self hostAddress.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   529
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   530
    lowBit := 0.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   531
    bI := 1.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   532
    sz := hostAddress size.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   533
    [
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   534
        lowBitHere := (hostAddress basicAt:bI) lowBit.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   535
        lowBitHere ~= 0 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   536
            lowBit := lowBit + (9 - lowBitHere).
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   537
        ].
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   538
        bI := bI + 1.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   539
    ] doWhile:[lowBitHere == 1 and:[bI < sz]].
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   540
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   541
    ^ lowBit
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   542
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   543
    "
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   544
      (IPSocketAddress addressString:'255.255.0.0') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   545
      (IPSocketAddress addressString:'255.255.128.0') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   546
      (IPv6SocketAddress addressString:'FFFF:FFFF:FFFF:FFFF::') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   547
      (IPv6SocketAddress addressString:'FFFF:FFFF:FFFF:FFF0::') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   548
      (IPv6SocketAddress addressString:'F0FF:FFFF:FFFF:FFF0::') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   549
    "
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   550
!
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   551
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   552
networkAddress
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   553
    "THINK TWICE before using this!! 
3510
51b43eca349f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3508
diff changeset
   554
     This is deprecated, it doesn't make sense any longer since CIDR, subnetting and netmasks
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   555
     have been introduced.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   556
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   557
     Extract and return the network part from the host address."
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   558
    <resource: #obsolete>
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   559
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   560
    |highAddrByte|
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   561
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   562
    highAddrByte := self at: 5.
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   563
    (highAddrByte bitAnd: 16r80) == 0 ifTrue: [^ByteArray with: highAddrByte].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   564
    (highAddrByte bitAnd: 16rC0) == 16r80 ifTrue: [^ByteArray with: highAddrByte with: (self at: 6)].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   565
    (highAddrByte bitAnd: 16rC0) == 16rC0 ifTrue: [^ByteArray with: highAddrByte with: (self at: 6) with: (self at: 7)].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   566
    ^ self error: 'unknown network class'
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   567
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   568
    "
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   569
     (IPSocketAddress hostName:'exept.eu.org') networkAddress     
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   570
     (IPSocketAddress hostName:'exept.exept.de') networkAddress    
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   571
     (IPSocketAddress hostName:'ibm.com') networkAddress          
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   572
     (IPSocketAddress hostName:'cnn.com') networkAddress          
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   573
    "
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   574
!
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   575
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   576
networkClass
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   577
    "THINK TWICE before using this!! 
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   578
     This is deprecated, it doesn't make sense any longer since subnetting and netmasks
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   579
     have been introduced.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   580
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   581
     Extract and return the network class (as a symbol) from the host address.
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   582
     Returns one of #classA #classB #classC."
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   583
    <resource: #obsolete>
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   584
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   585
    |highAddrByte|
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   586
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   587
    highAddrByte := self at: 5.
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   588
    (highAddrByte bitAnd: 16r80) == 0 ifTrue: [^#classA].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   589
    (highAddrByte bitAnd: 16rC0) == 16r80 ifTrue: [^#classB].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   590
    (highAddrByte bitAnd: 16rC0) == 16rC0 ifTrue: [^#classC].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   591
    ^ self error: 'unknown network class'
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   592
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   593
    "
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   594
     (IPSocketAddress hostName:'exept.eu.org') networkClass
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   595
    "
1937
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   596
!
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   597
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   598
portOrName
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   599
    ^ self port
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   600
! !
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   601
1366
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   602
!IPSocketAddress methodsFor:'testing'!
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   603
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   604
isBroadcast
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   605
    "answer true, if this is a broadcast address"
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   606
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   607
    ^ (self at:5) == 255
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   608
        and:[self sameContentsFrom:6 to:8 as:#[255 255 255] startingAt:1]
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   609
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   610
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   611
        (self hostAddress:self broadcastAddress) isBroadcast
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   612
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   613
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   614
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   615
isIPSocketAddress
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   616
    ^ true
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   617
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   618
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   619
isIPv4SocketAddress
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   620
    ^ self class == IPSocketAddress
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   621
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   622
1366
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   623
isLocal
3986
e51bb438c6a6 #OTHER by mawalch
mawalch
parents: 3772
diff changeset
   624
    "answer true, if this address addresses a peer on the same host"
1366
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   625
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   626
    ^ (self at:5) == 127
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   627
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   628
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   629
        self localHost isLocal
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   630
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   631
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   632
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   633
isMulticast
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   634
    "answer true, if this address is a multicast address 224.0.0.0/4 or Class D"
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   635
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   636
    ^ (self at:5) between:224 and:239  
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   637
!
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   638
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   639
isMyAddress
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   640
    "answer true, if the address refers to my own host"
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   641
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   642
    self isLocal ifTrue:[^ true].
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   643
3518
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   644
    OperatingSystem isLinuxLike ifTrue:[
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   645
        "/ make this general later, when getNetworkAddressInfo is implemented in Win32OperatingSystem
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   646
        OperatingSystem getNetworkAddressInfo do:[:eachIfAddrInfoSet|
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   647
            eachIfAddrInfoSet do:[:eachIfAddrInfo|
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   648
                |address|
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   649
                address := eachIfAddrInfo at:#address ifAbsent:nil.
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   650
                address notNil ifTrue:[
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   651
                    (self sameHostAddress:address) ifTrue:[^ true].
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   652
                ]
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   653
            ].
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   654
        ].
3518
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   655
        ^ false
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   656
    ] ifFalse:[
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   657
        "/ For now - works only for ipv4...
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   658
        ^ OperatingSystem getNetworkAddresses contains:[:each| 
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   659
                self sameHostAddress:each
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   660
            ].
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   661
    ].
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   662
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   663
    "
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   664
        (IPSocketAddress hostAddress:#[172 23 1 88] port:80) isMyAddress.
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   665
        (IPSocketAddress hostAddress:#[192 168 23 29] port:80) isMyAddress.
3518
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   666
        (IPv6SocketAddress addressString:'2003:6A:682B:4500:A288:B4FF:FEC6:1514') isMyAddress.
aedfc3d7d38f class: IPSocketAddress
Stefan Vogel <sv@exept.de>
parents: 3510
diff changeset
   667
        (IPv6SocketAddress addressString:'2001:6A:682B:4500:A288:B4FF:FEC6:1514') isMyAddress.
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   668
    "
1366
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   669
! !
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   670
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   671
!IPSocketAddress class methodsFor:'documentation'!
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   672
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   673
version
3582
05524be1015d class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
   674
    ^ '$Header$'
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   675
!
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   676
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   677
version_CVS
3582
05524be1015d class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3522
diff changeset
   678
    ^ '$Header$'
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   679
! !
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   680