I want to send a datagram UDP message via sendto with 4-byte address, 1 short int number, and 4 bytes int distance. So it should be exactly 9-bytes. How can i do it? I already have tried to convert those values and put them in buffer, but it didn't work.
sendto(sockfd, &message, sizeof(message), 0, (struct sockaddr*) &server_address, sizeof(server_address));
EDIT: i also tried to create, but it has 12 bytes.
struct msg {
uint32_t dist;
uint8_t num ;
struct in_addr addr;
};
The most portable way is to assemble the bytes into a buffer yourself:
... and then on the receiving side, something like: