On Fri, Dec 5, 2008 at 3:27 PM, Hart, Gordon (UK)
<[EMAIL PROTECTED]> wrote:
>
> FGMultiplayer::MP_ProcessData: No such file or directory
>
> Not only can I not find this particular message in the source, but I am
> at a loss over which file this recorded network traffic may be provoking
> FG to look for. I don't believe it's referring to the xml file that
> describes the aircraft to which this message refers. Perhaps FG creates
> and stores temporary files to describe each participant drawn from the
> network? I don't know.

    bytes = mSocket->recvfrom(Msg, sizeof(Msg), 0, &SenderAddress);
    //////////////////////////////////////////////////
    //  no Data received
    //////////////////////////////////////////////////
    if (bytes <= 0) {
      if (errno != EAGAIN && errno != 0) // MSVC output "NoError" otherwise
        perror("FGMultiplayMgr::MP_ProcessData");

The "no such file or directory" comes from perror, and isn't a file
error per se. More likely is that the socket could not be opened.

-- 
Csaba/Jester

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Flightgear-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to