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

nanocoap_sock: consitfy remote #18588

Merged
merged 1 commit into from
Sep 14, 2022
Merged

Conversation

benpicco
Copy link
Contributor

@benpicco benpicco commented Sep 13, 2022

Contribution description

The remote argument is passed to a function that accepts a const pointer.
Since we might want to store remote in flash or use the one returned by coap_request_ctx_get_remote_udp(), also make the remote argument const in nanoCoAP sock.

Testing procedure

Green CI

Issues/PRs references

@github-actions github-actions bot added Area: CoAP Area: Constrained Application Protocol implementations Area: network Area: Networking Area: sys Area: System labels Sep 13, 2022
@benpicco benpicco requested review from fabian18 and maribu September 13, 2022 17:39
@benpicco benpicco force-pushed the nanocoap_const_remote branch from 6e55aa0 to 587afab Compare September 13, 2022 17:40
@benpicco benpicco added Type: cleanup The issue proposes a clean-up / The PR cleans-up parts of the codebase / documentation CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR labels Sep 13, 2022
int nanocoap_sock_connect(nanocoap_sock_t *sock, sock_udp_ep_t *local, sock_udp_ep_t *remote)
{
if (!remote->port) {
remote->port = COAP_PORT;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically this makes this an API change, but I couldn't find a user other than nanocoap_sock_url_connect() that relied on this.

@fabian18
Copy link
Contributor

There is one more.

diff --git a/sys/include/net/nanocoap_sock.h b/sys/include/net/nanocoap_sock.h
index e9b2f48fd8..077dde7170 100644
--- a/sys/include/net/nanocoap_sock.h
+++ b/sys/include/net/nanocoap_sock.h
@@ -396,7 +396,7 @@ ssize_t nanocoap_get(const sock_udp_ep_t *remote, const char *path,
  * @retval      <0      Error (see @ref nanocoap_sock_connect for details)
  */
 static inline int nanocoap_block_request_init(coap_block_request_t *ctx,
-                                              sock_udp_ep_t *remote,
+                                              const sock_udp_ep_t *remote,
                                               const char *path,
                                               uint8_t method,
                                               coap_blksize_t blksize)

@benpicco benpicco force-pushed the nanocoap_const_remote branch from 587afab to b6fac2b Compare September 14, 2022 08:30
@benpicco
Copy link
Contributor Author

Good catch!

Copy link
Contributor

@fabian18 fabian18 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 ACK

@benpicco benpicco added the Process: API change Integration Process: PR contains or issue proposes an API change. Should be handled with care. label Sep 14, 2022
@benpicco benpicco merged commit 63fc861 into RIOT-OS:master Sep 14, 2022
@benpicco benpicco deleted the nanocoap_const_remote branch September 14, 2022 13:19
@maribu maribu added this to the Release 2022.10 milestone Oct 14, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: CoAP Area: Constrained Application Protocol implementations Area: network Area: Networking Area: sys Area: System CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR Process: API change Integration Process: PR contains or issue proposes an API change. Should be handled with care. Type: cleanup The issue proposes a clean-up / The PR cleans-up parts of the codebase / documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants