-
Notifications
You must be signed in to change notification settings - Fork 74
Expand control port API capabilities for hd-rum-transcode #489
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
Open
armelvil
wants to merge
16
commits into
CESNET:master
Choose a base branch
from
armelvil:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Allow listing control ports Allow removal by IP address instead of port index #
…oser to getting a netcat output
- add existing port checking to ensure the same client/port may not be added multiple times to a reflector
…to get return messages back out of netcat when a client makes a write request. Without this timer, we don't seem to get proper outputs in terminal sdtout or via netcat. I need to understand this better so that I can switch it back to a full event-based messaging system as appears to be the original intent, as effectively running a poll doesn't seem efficient to me.
preset also DELTACAST_PATH to /usr to allow build with VideoMaster distro pkg
…olling - ensured error messages are properly terminated with newline - moved messaging from end of writer function to complete;continue; from within each else condition - init char buffer for messages at start of else conditions - increase buffer size of control socket as we might be handling a list of clients now
+ fix $DELTACAST_DIRECTORY not being honored in Windows since @^2
Primarily used by CMake but if no nvcc was found, we can try this as well.
SVT-JPEG-XS has been merged, which was causing the conflicts
Allow listing control ports Allow removal by IP address instead of port index #
…oser to getting a netcat output
- add existing port checking to ensure the same client/port may not be added multiple times to a reflector
…to get return messages back out of netcat when a client makes a write request. Without this timer, we don't seem to get proper outputs in terminal sdtout or via netcat. I need to understand this better so that I can switch it back to a full event-based messaging system as appears to be the original intent, as effectively running a poll doesn't seem efficient to me.
…olling - ensured error messages are properly terminated with newline - moved messaging from end of writer function to complete;continue; from within each else condition - init char buffer for messages at start of else conditions - increase buffer size of control socket as we might be handling a list of clients now
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Enhances the HD-RUM translator control port API with improved feedback and management capabilities:
list-portsandquery-portscommands to show all configured output ports with their IP addresses and statusTechnical changes:
This improves the usability of dynamic reflector management via the control port API.
Note: Commits represent iterative development process. Final implementation includes callback-based messaging system for improved control port feedback.