Home
last modified time | relevance | path

Searched refs:reuse_port (Results 1 – 10 of 10) sorted by relevance

/third_party/ltp/testcases/network/netstress/
Dnetstress.c147 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/
Dbase_events.py1242 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:
Devents.py314 ssl=None, reuse_address=None, reuse_port=None, argument
438 reuse_address=None, reuse_port=None, argument
/third_party/python/Lib/
Dsocket.py869 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/
Dtest_base_events.py1557 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)
Dtest_events.py851 lambda: proto, '0.0.0.0', 0, reuse_port=True)
/third_party/python/Doc/library/
Dasyncio-eventloop.rst496 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
Dasyncio-stream.rst86 reuse_port=None, ssl_handshake_timeout=None, \
Dsocket.rst667 .. 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/
Dtest_socket.py6466 socket.create_server(("localhost", 0), reuse_port=True)
6471 with socket.create_server(("localhost", 0), reuse_port=True) as sock: