MCPcopy Create free account
hub / github.com/DSL-Lab/StreamSplat / init

Function init

gaussian_renderer_dynamic/network_gui.py:26–32  ·  view source on GitHub ↗
(wish_host, wish_port)

Source from the content-addressed store, hash-verified

24listener = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
25
26def init(wish_host, wish_port):
27 global host, port, listener
28 host = wish_host
29 port = wish_port
30 listener.bind((host, port))
31 listener.listen()
32 listener.settimeout(0)
33
34def try_connect():
35 global conn, addr, listener

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected