Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connection is not properly disestablished upon ending a session #47

Open
a-priestley opened this issue Sep 20, 2023 · 0 comments
Open
Labels
bug Something isn't working

Comments

@a-priestley
Copy link

Use netstat to illustrate the issue. When you first start streaming using moonlight:
sudo nsenter -t "$(docker inspect -f '{{.State.Pid}}' "[WOLF_CONTAINER_ID]")" -n netstat -anup

Within the list of records will be an entry describing the established connection for wolf:
udp 0 0 192.168.0.207:53602 192.168.0.141:44965 ESTABLISHED 1404/wolf

Terminate the stream session and issue the command again. The record will still be present.

The issue is highlighted when creating a new stream with the same client -- another connection will be established without terminating the previous one:

udp        0      0 192.168.0.207:53602     192.168.0.141:44965     ESTABLISHED 1404/wolf
udp        0      0 192.168.0.207:39660     192.168.0.141:58315     ESTABLISHED 1404/wolf

The connections will release upon stopping the wolf container.

@ABeltramo ABeltramo added the bug Something isn't working label Sep 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants