Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to send/receive some data across 2 computers (mac, ubuntu) using a UDP connection and they are connected with an ethernet cable. When I run the server to receive some data from a client, I get the data but if I send it back, the client does not receive it. On further investigation, I found out that the clientAddress that I store upon recvfrom() does not have information relating to the ipaddress and port of the client (it is all zeroes). Any clues on what might be going wrong ?

n = recvfrom(sockfd, msg, 1000, 0, (sockaddr *)&clientAddress, &len);
sendto(sockfd, msg, n, 0, (sockaddr *)&clientAddress, sizeof(clientAddress));
share|improve this question

1 Answer

up vote 2 down vote accepted

Make sure you populate len before calling recvfrom, it's a value-result argument.

len = sizeof(clientAddress);
n = recvfrom(sockfd, msg, 1000, 0, (sockaddr *)&clientAddress, &len);
share|improve this answer
Thanks a lot :) – sanz Oct 9 '11 at 6:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.