i am trying to do a 2 way broadcast system on 2 computers. Its my first time doing network programming and in c++. lets say i have computer A and computer B, 2 sockets declared each, sockets sd and sd1 on each computer and client,server declaration on each computer. on computer A, socket sd on computer A is binded to client IP of 192.168.2.100:50000 on computer A. Then it receives information from broadcasting computer B using:
recvfrom(sd, (char *)received_buffer, 100, 0, NULL, 0)
on computer B, socket sd is set for broadcast using:
setsockopt(sd, SOL_SOCKET, SO_BROADCAST, (char *)&broadcastpermission, sizeof(struct sockaddr_in))
but sd is not binded because of broadcasting usage. computer B then broadcasts info to computer A using :
sendto(sd, (char *)send_buffer, 100, 0, (struct sockaddr *)&server, (int)sizeof(struct sockaddr_in))
where the declared server on computer B is of IP 192.168.2.100:50000 (same as client's IP on computer A so that it broadcasts to that IP).
This above methods works fine when computer B broadcasts to computer A. However, when I tried to do the same in reverse, Computer A broadcasts to computer B, it does not work. on computer A, socket sd1 is declared and set for broadcast using:
setsockopt(sd1, SOL_SOCKET, SO_BROADCAST, (char *)&broadcastpermission, sizeof(struct sockaddr_in))
and sd1 is not binded and computer A broadcasts to computer B using:
sendto(sd1, (char *)send_buffer, 100, 0, (struct sockaddr *)&server, (int)sizeof(struct sockaddr_in))
where server is declared as IP 192.168.2.2:40000 (its the client IP address of computer B so that it broadcasts there). on computer B,socket sd1 is declared and binded to client and IP obtained automatically at IP 192.168.2.2:40000. Computer B receives the broadcast using:
recvfrom(sd, (char *)received_buffer, 100, 0, NULL, 0)
My apolgies for the very long story, but i need to be as clear as possible. Could anyone tell any posibility of why computer B can't receive broadcasts from computer A?