examples:rpl_udp removed the limit of 5 characters as payload size

This commit is contained in:
BytesGalore 2015-03-30 10:40:22 +02:00
parent dbd4475bfe
commit b9e5c94a3d

View File

@ -102,17 +102,21 @@ int udp_send(int argc, char **argv)
ipv6_addr_t ipaddr; ipv6_addr_t ipaddr;
int bytes_sent; int bytes_sent;
int address; int address;
char text[5];
if (argc != 3) { if (argc != 3) {
printf("usage: send <addr> <text>\n"); printf("usage: send <addr> <text>\n");
return 1; return 1;
} }
address = atoi(argv[1]); /* max payload size = MTU - MAC - AES - IPV6_HDR_LEN - UDP_HDR_LEN
* 33 = 127 - 25 - 21 - 40 - 8
*/
if (strlen(argv[2]) > 32) {
puts("<text> is too large to be sent (max. 33 characters).");
return 1;
}
strncpy(text, argv[2], sizeof(text)); address = atoi(argv[1]);
text[sizeof(text) - 1] = 0;
sock = socket_base_socket(PF_INET6, SOCK_DGRAM, IPPROTO_UDP); sock = socket_base_socket(PF_INET6, SOCK_DGRAM, IPPROTO_UDP);
@ -134,8 +138,8 @@ int udp_send(int argc, char **argv)
memcpy(&sa.sin6_addr, &ipaddr, 16); memcpy(&sa.sin6_addr, &ipaddr, 16);
sa.sin6_port = HTONS(SERVER_PORT); sa.sin6_port = HTONS(SERVER_PORT);
bytes_sent = socket_base_sendto(sock, (char *)text, bytes_sent = socket_base_sendto(sock, argv[2],
strlen(text) + 1, 0, &sa, strlen(argv[2]), 0, &sa,
sizeof(sa)); sizeof(sa));
if (bytes_sent < 0) { if (bytes_sent < 0) {