feat: support static remote endpoint in ClientConfig (no SD)#15
Merged
Conversation
Add an optional `remote_endpoint` field to `ClientConfig` and forward it to `UdpTransport` / `TcpTransport` during `SomeIpClient` construction. This enables communication with SOME/IP servers that do not run Service Discovery (e.g. Zephyr-based MCU firmware with multicast TX disabled). Both transports already accept the parameter — it just wasn't wired through the high-level config. The field defaults to `None`, preserving existing SD-based behavior. Closes #13 Made-with: Cursor
vtz
added a commit
that referenced
this pull request
Apr 18, 2026
Summary Bump version from 0.1.3 to 0.1.4 across pyproject.toml, _version.py, and cmake defines Add CHANGELOG entry for v0.1.4 What's in 0.1.4 Features Add optional remote_endpoint field to ClientConfig, enabling communication with SOME/IP servers that do not run Service Discovery (feat: support static remote endpoint in ClientConfig (no SD) #15) Miscellaneous Bump softprops/action-gh-release from 2 to 3 Bump actions/github-script from 8 to 9 Bump codecov/codecov-action from 5 to 6 Update opensomeip C++ submodule
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
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.
Summary
remote_endpointfield toClientConfigand forward it toUdpTransport/TcpTransportduringSomeIpClientconstruction.None, preserving existing SD-based behavior.Closes #13
Changes
src/opensomeip/client.pyremote_endpoint: Endpoint | None = Nonefield toClientConfigSomeIpClient.__init__to forwardconfig.remote_endpointto bothTcpTransportandUdpTransportconstructorstests/unit/test_client.pyTestStaticRemoteEndpointtest class with 5 tests:test_remote_endpoint_defaults_to_none— backward compatibilitytest_udp_remote_endpoint_forwarded— UDP transport picks up the endpointtest_tcp_remote_endpoint_forwarded— TCP transport picks up the endpointtest_no_remote_endpoint_preserves_none— omitting the field preservesNonetest_lifecycle_with_remote_endpoint— full start/stop cycle with static endpointTest plan
Made with Cursor