Still don’t have a Meld Account?
Join now to be a part of the worlds largest embedded linux community!
Join Now!IPC Broadcast messages....won't work off the net.
roberts136 - September 2, 2010
I've implemented some IPC code to deliver broadcast messages between processes based on sockets. One sender, many listeners listening to a common port. Standard socket code (i think), the sender sending on INADDR_BROADCAST , port 49999, the listener listening on INADDR_ANY, port 49999. It all works very well just how I want it too.......almost.
I know, not much to go on..... any ideas? Code below
int CIpc::ipcSend_Message(char* message, int msgSize, int port, int broadcast){

Do you see outgoing packets
Do you see outgoing packets with utility such as tcpdump? If you can supply a sender/receiver pair that I can compile, I can try try locally.
Steve