/third_party/python/Lib/test/ |
D | test_ipaddress.py | 12 import ipaddress 58 return self.assertCleanError(ipaddress.AddressValueError, 63 return self.assertCleanError(ipaddress.NetmaskValueError, 196 factory = ipaddress.IPv4Address 199 v4 = ipaddress.IPv4Address("1.2.3.42") 226 ipaddress.IPv4Address(addr) 231 ipaddress.IPv4Address(addr) 261 ipaddress.IPv4Address(addr) 270 ipaddress.IPv4Address(addr) 286 ipaddress.IPv4Address(addr) [all …]
|
/third_party/python/Doc/howto/ |
D | ipaddress.rst | 3 import ipaddress 8 An introduction to the ipaddress module 17 :mod:`ipaddress` module. It is aimed primarily at users that aren't 19 to network engineers wanting an overview of how :mod:`ipaddress` 26 Since :mod:`ipaddress` is a module for inspecting and manipulating IP addresses, 28 :mod:`ipaddress` to create objects from strings and integers. 52 to use the :func:`ipaddress.ip_address` factory function, which automatically 56 >>> ipaddress.ip_address('192.0.2.1') 58 >>> ipaddress.ip_address('2001:DB8::1') 64 >>> ipaddress.ip_address(3221225985) [all …]
|
D | index.rst | 29 ipaddress.rst
|
/third_party/python/Doc/tools/ |
D | susp-ignored.csv | 53 howto/ipaddress,,:DB8,>>> ipaddress.ip_address('2001:DB8::1') 54 howto/ipaddress,,::,>>> ipaddress.ip_address('2001:DB8::1') 55 howto/ipaddress,,:db8,IPv6Address('2001:db8::1') 56 howto/ipaddress,,::,IPv6Address('2001:db8::1') 57 howto/ipaddress,,::,IPv6Address('::1') 58 howto/ipaddress,,:db8,>>> ipaddress.ip_network('2001:db8::0/96') 59 howto/ipaddress,,::,>>> ipaddress.ip_network('2001:db8::0/96') 60 howto/ipaddress,,:db8,IPv6Network('2001:db8::/96') 61 howto/ipaddress,,::,IPv6Network('2001:db8::/96') 62 howto/ipaddress,,:db8,IPv6Network('2001:db8::/128') [all …]
|
/third_party/curl/tests/unit/ |
D | unit1609.c | 151 char ipaddress[MAX_IPADR_LEN] = {0}; variable 157 ipaddress, &port)) { 167 __FILE__, __LINE__, i, ipaddress, i, j); 180 if(!curl_strequal(ipaddress, tests[i].address[j])) { 183 __FILE__, __LINE__, i, ipaddress, i, j, tests[i].address[j]);
|
D | unit1607.c | 149 char ipaddress[MAX_IPADR_LEN] = {0}; variable 158 ipaddress, &port)) { 168 __FILE__, __LINE__, i, ipaddress, i, j); 181 if(!curl_strequal(ipaddress, tests[i].address[j])) { 184 __FILE__, __LINE__, i, ipaddress, i, j, tests[i].address[j]);
|
/third_party/python/Doc/library/ |
D | ipaddress.rst | 1 :mod:`ipaddress` --- IPv4/IPv6 manipulation library 4 .. module:: ipaddress 9 **Source code:** :source:`Lib/ipaddress.py` 13 :mod:`ipaddress` provides the capabilities to create, manipulate and 23 :ref:`ipaddress-howto`. 29 import ipaddress 30 from ipaddress import ( 37 The :mod:`ipaddress` module provides factory functions to conveniently create 48 >>> ipaddress.ip_address('192.168.0.1') 50 >>> ipaddress.ip_address('2001:db8::') [all …]
|
D | internet.rst | 48 ipaddress.rst
|
/third_party/node/deps/npm/node_modules/socks/docs/ |
D | migratingFromV1.md | 25 ipaddress: "202.101.228.108", 61 ipaddress: "202.101.228.108",
|
/third_party/node/deps/npm/node_modules/socks/build/client/ |
D | socksclient.js | 91 host: options.proxies[i + 1].ipaddress, 248 …ocket_options), { host: this._options.proxy.host || this._options.proxy.ipaddress, port: this._opt… 418 remoteHost.host = this._options.proxy.ipaddress; 591 remoteHost.host = this._options.proxy.ipaddress; 680 remoteHost.host = this._options.proxy.ipaddress;
|
/third_party/curl/lib/ |
D | connect.c | 980 char ipaddress[MAX_IPADR_LEN]; in Curl_is_connected() local 982 Curl_printable_address(conn->tempaddr[i], ipaddress, in Curl_is_connected() 983 sizeof(ipaddress)); in Curl_is_connected() 985 ipaddress, conn->port, in Curl_is_connected() 1172 char ipaddress[MAX_IPADR_LEN]; in singleipconnect() local 1188 ipaddress, &port)) { in singleipconnect() 1195 infof(data, " Trying %s:%d...", ipaddress, port); in singleipconnect() 1337 ipaddress, Curl_strerror(error, buffer, sizeof(buffer))); in singleipconnect()
|
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/iomgr/ |
D | iomgr.pyx.pxi | 23 import ipaddress # CPython 3.3 and above 143 ip = ipaddress.ip_address(host) 144 if isinstance(ip, ipaddress.IPv6Address):
|
/third_party/node/deps/npm/node_modules/socks/docs/examples/typescript/ |
D | connectExample.md | 85 ipaddress: '104.131.124.203', 148 ipaddress: '104.131.124.203', 209 ipaddress: '104.131.124.203',
|
/third_party/node/deps/npm/node_modules/socks/docs/examples/javascript/ |
D | connectExample.md | 84 ipaddress: '104.131.124.203', 146 ipaddress: '104.131.124.203', 206 ipaddress: '104.131.124.203',
|
/third_party/node/deps/npm/node_modules/socks/typings/common/ |
D | constants.d.ts | 95 ipaddress?: string;
|
/third_party/node/deps/npm/node_modules/socks/build/common/ |
D | helpers.js | 87 (typeof proxy.host === 'string' || typeof proxy.ipaddress === 'string') &&
|
/third_party/node/deps/npm/node_modules/socks-proxy-agent/ |
D | index.js | 123 ipaddress: proxy.host, property
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1335 ipaddress section in Improved Modules 1338 Both the :class:`~ipaddress.IPv4Network` and :class:`~ipaddress.IPv6Network` classes 1342 >>> import ipaddress 1343 >>> ipaddress.IPv4Network(('127.0.0.0', 8)) 1345 >>> ipaddress.IPv4Network(('127.0.0.0', '255.0.0.0')) 1350 A new :attr:`~ipaddress.IPv4Network.reverse_pointer` attribute for the 1351 :class:`~ipaddress.IPv4Network` and :class:`~ipaddress.IPv6Network` classes 1354 >>> import ipaddress 1355 >>> addr = ipaddress.IPv4Address('127.0.0.1') 1358 >>> addr6 = ipaddress.IPv6Address('::1') [all …]
|
D | 3.9.rst | 531 ipaddress section in Improved Modules 534 :mod:`ipaddress` now supports IPv6 Scoped Addresses (IPv6 address with suffix ``%<scope_id>``). 536 Scoped IPv6 addresses can be parsed using :class:`ipaddress.IPv6Address`. 537 If present, scope zone ID is available through the :attr:`~ipaddress.IPv6Address.scope_id` attribut… 540 Starting with Python 3.9.5 the :mod:`ipaddress` module no longer 1121 * Starting with Python 3.9.5 the :mod:`ipaddress` module no longer
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0b3.rst | 287 Fix a regression in :mod:`ipaddress` that result of :meth:`hosts` is empty 408 Documentation changes for ipaddress. Patch by Jon Foster and Berker Peksag.
|
D | 3.5.0a1.rst | 690 Add ipaddress.reverse_pointer. Patch by Leon Weber. 893 Fixed bugs in the comparison of ipaddress classes. 932 Pickling of ipaddress objects now produces more compact and portable 951 Much faster implementation of ipaddress.collapse_addresses() when there are 3567 Optimize ipaddress.collapse_addresses(). 3576 Optimize ipaddress.summarize_address_range() and 3577 ipaddress.{IPv4Network,IPv6Network}.subnets(). 3586 Optimize parsing of netmasks in ipaddress.IPv4Network and 3587 ipaddress.IPv6Network. 3654 ipaddress.IPv4Network and ipaddress.IPv6Network now accept an (address, [all …]
|
D | 3.6.6rc1.rst | 438 Fix a regression in :mod:`ipaddress` that result of :meth:`hosts` is empty 585 Documentation changes for ipaddress. Patch by Jon Foster and Berker Peksag.
|
D | 3.10.0b2.rst | 197 :mod:`ipaddress.IPv6Address.is_private` check is deferred to the mapped IPv4
|
D | 3.7.0b2.rst | 228 ipaddress module for wildcard and IP addresses. Error reporting for invalid
|
D | 3.7.0a3.rst | 930 :class:`ipaddress.IPv6Network` and :class:`ipaddress.IPv4Network`. Patch by
|