Searched refs:reuse_port (Results 1 – 10 of 10) sorted by relevance
/external/ltp/testcases/network/netstress/ |
D | netstress.c | 138 static char *reuse_port; variable 308 if (reuse_port) in bind_before_connect() 677 if (reuse_port) in server_init() 1005 {"P:", &reuse_port, "-P enable SO_REUSEPORT"},
|
/external/python/cpython3/Lib/ |
D | socket.py | 832 def create_server(address, *, family=AF_INET, backlog=None, reuse_port=False, argument 851 if reuse_port and not hasattr(_socket, "SO_REUSEPORT"): 877 if reuse_port:
|
/external/python/cpython3/Lib/asyncio/ |
D | base_events.py | 1208 reuse_address=_unset, reuse_port=None, argument 1217 reuse_port or allow_broadcast): 1221 reuse_address=reuse_address, reuse_port=reuse_port, 1304 if reuse_port: 1381 reuse_port=None, argument 1445 if reuse_port:
|
D | events.py | 311 ssl=None, reuse_address=None, reuse_port=None, argument 421 reuse_address=None, reuse_port=None, argument
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_base_events.py | 1544 MyProto, '0.0.0.0', 0, reuse_port=True) 1555 MyProto, '0.0.0.0', 0, reuse_port=True) 1736 MyDatagramProto, reuse_port=True, sock=FakeSock()) 1770 reuse_port=reuseport_supported, 1824 reuse_port=True) 1842 reuse_port=reuseport_supported)
|
D | test_events.py | 821 lambda: proto, '0.0.0.0', 0, reuse_port=True)
|
/external/python/cpython3/Doc/library/ |
D | asyncio-eventloop.rst | 461 reuse_address=None, reuse_port=None, \ 473 For supported platforms, *reuse_port* can be used as a replacement for 474 similar functionality. With *reuse_port*, 507 * *reuse_port* tells the kernel to allow this endpoint to be bound to the 525 The *family*, *proto*, *flags*, *reuse_address*, *reuse_port, 573 reuse_address=None, reuse_port=None, \ 620 * *reuse_port* tells the kernel to allow this endpoint to be bound to the
|
D | asyncio-stream.rst | 81 reuse_port=None, ssl_handshake_timeout=None, \
|
D | socket.rst | 603 .. function:: create_server(address, *, family=AF_INET, backlog=None, reuse_port=False, dualstack_i… 611 *reuse_port* dictates whether to set the :data:`SO_REUSEPORT` socket option.
|
/external/python/cpython3/Lib/test/ |
D | test_socket.py | 6115 socket.create_server(("localhost", 0), reuse_port=True) 6120 with socket.create_server(("localhost", 0), reuse_port=True) as sock:
|