Changeset b9be9b0 in mainline for uspace/app/netecho/comm.c
- Timestamp:
- 2022-03-04T09:11:58Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- af259da
- Parents:
- 917324b
- git-author:
- Jiri Svoboda <jiri@…> (2022-03-03 18:11:14)
- git-committer:
- Jiri Svoboda <jiri@…> (2022-03-04 09:11:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/netecho/comm.c
r917324b rb9be9b0 52 52 static udp_t *udp; 53 53 static udp_assoc_t *assoc; 54 static inet_ep_t remote;55 54 56 55 #define RECV_BUF_SIZE 1024 … … 185 184 errno_t comm_send(void *data, size_t size) 186 185 { 187 errno_t rc = udp_assoc_send_msg(assoc, &remote, data, size);186 errno_t rc = udp_assoc_send_msg(assoc, NULL, data, size); 188 187 if (rc != EOK) 189 188 return EIO;
Note:
See TracChangeset
for help on using the changeset viewer.