# voxl-streamer disconnecting live connection

Source: https://forum.modalai.com/topic/4330/voxl-streamer-disconnecting-live-connection
Category: General Questions (https://forum.modalai.com/category/2/general-questions)
Posted: 2025-04-08 19:09:48 UTC by jcai
Replies: 1 · Views: 514

## jcai · 2025-04-08 19:09:48 UTC

Unsure if the following is expected behaviour, but I doubt it is.

**Reproduce:**
- Start `voxl-streamer` listening to hires_front_small_encoded
- Connect to the stream (e.g., `ffplay -i rtsp://<voxl ip>:<port>/live`)
- Confirm that the stream looks good
- Disconnect from the stream (CTRL-C the `ffplay` command)
- Within 60 seconds, re-run the same `ffplay` command
- Observe that the stream looks good but will freeze within 60 seconds (e.g., the command is restarted 15 seconds after initially closing the connection. The new stream will freeze after 45 seconds
- Observe that `voxl-streamer` outputs `Removed 1 sessions`
- Disconnect from the new stream (CTRL-C `ffplay`)
- Observe that `voxl-streamer` outputs `Removed 1 sessions` again after 60 seconds

**Based on behaviour and [source code](https://gitlab.com/voxl-public/voxl-sdk/services/voxl-streamer/-/blob/master/src/main.c#L329), what I think is happening:**
When the first connection is closed, `voxl-streamer` detects this and decrements the number of clients. However, it takes 60 seconds for the `gstreamer` session to time out and close. During this time, if another client connects, there are now 2 `gstreamer` sessions and 1 `voxl-streamer` client. 60 seconds after the first connection is closed, the inactive `gstreamer` session is cleaned up. Since `voxl-streamer` doesn't know that this session was already inactive, when it closes, `voxl-streamer` decrements its number of clients even though the one client it has still has an active `gstreamer` session.

## Reply by Alex Kushleyev (ModalAI staff) · 2025-04-09 01:58:11 UTC

@jcai, I just tested this. I do see that "Removed 1 sessions" message comes in after ~1 min after the first disconnect, but my second session is not interrupted when this happens.

Please make sure you are using the latest version of `voxl-streamer` (you can try from nightly dev build). Also, something to double check, whether the two sessions are coming from the same or different port (maybe if you are using vpn or something, there new session starts from the same client port).

Alex
