Searched refs:reuse_port (Results 1 – 10 of 10) sorted by relevance
/third_party/ltp/testcases/network/netstress/ |
D | netstress.c | 147 static char *reuse_port; variable 317 if (reuse_port) in bind_before_connect() 675 if (reuse_port) in server_init() 1009 {"P:", &reuse_port, "Enable SO_REUSEPORT"},
|
/third_party/python/Lib/asyncio/ |
D | base_events.py | 1242 reuse_address=_unset, reuse_port=None, argument 1251 reuse_port or allow_broadcast): 1255 reuse_address=reuse_address, reuse_port=reuse_port, 1338 if reuse_port: 1415 reuse_port=None, argument 1479 if reuse_port:
|
D | events.py | 314 ssl=None, reuse_address=None, reuse_port=None, argument 438 reuse_address=None, reuse_port=None, argument
|
/third_party/python/Lib/ |
D | socket.py | 869 def create_server(address, *, family=AF_INET, backlog=None, reuse_port=False, argument 888 if reuse_port and not hasattr(_socket, "SO_REUSEPORT"): 914 if reuse_port:
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_base_events.py | 1557 MyProto, '0.0.0.0', 0, reuse_port=True) 1568 MyProto, '0.0.0.0', 0, reuse_port=True) 1749 MyDatagramProto, reuse_port=True, sock=FakeSock()) 1785 reuse_port=reuseport_supported, 1839 reuse_port=True) 1857 reuse_port=reuseport_supported)
|
D | test_events.py | 851 lambda: proto, '0.0.0.0', 0, reuse_port=True)
|
/third_party/python/Doc/library/ |
D | asyncio-eventloop.rst | 496 reuse_address=None, reuse_port=None, \ 508 For supported platforms, *reuse_port* can be used as a replacement for 509 similar functionality. With *reuse_port*, 542 * *reuse_port* tells the kernel to allow this endpoint to be bound to the 560 The *family*, *proto*, *flags*, *reuse_address*, *reuse_port, 608 reuse_address=None, reuse_port=None, \ 660 * *reuse_port* tells the kernel to allow this endpoint to be bound to the
|
D | asyncio-stream.rst | 86 reuse_port=None, ssl_handshake_timeout=None, \
|
D | socket.rst | 667 .. function:: create_server(address, *, family=AF_INET, backlog=None, reuse_port=False, dualstack_i… 675 *reuse_port* dictates whether to set the :data:`SO_REUSEPORT` socket option.
|
/third_party/python/Lib/test/ |
D | test_socket.py | 6466 socket.create_server(("localhost", 0), reuse_port=True) 6471 with socket.create_server(("localhost", 0), reuse_port=True) as sock:
|