-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Conversation
6e55aa0
to
587afab
Compare
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; |
There was a problem hiding this comment.
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.
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) |
587afab
to
b6fac2b
Compare
Good catch! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1 ACK
Contribution description
The
remote
argument is passed to a function that accepts aconst
pointer.Since we might want to store
remote
in flash or use the one returned bycoap_request_ctx_get_remote_udp()
, also make theremote
argumentconst
in nanoCoAP sock.Testing procedure
Green CI
Issues/PRs references