[beagleboard] Re: Error Listening To Socket - MOOS-IvP won't run on Beaglebone Black

2014-12-18 Thread Damian Manda
I had the same problem (I am running MOOS-IvP on Ubuntu 14.04 on a BeagleBone Black), but after adding a second call to the getprotobyname function and recompiling, I still receive the error. Using lsof does in fact show that it is trying to use UDP instead of TCP. The error is also

[beagleboard] Re: Error Listening To Socket - MOOS-IvP won't run on Beaglebone Black

2014-03-11 Thread haeusler . phillip
Ok so after much debugging I have found that when the Listen thread socket is started it starts as a UDP socket (determined using lsof) when it should be a TCP socket. What would cause this? On Wednesday, 5 March 2014 20:32:54 UTC+10:30, haeusler...@gmail.com wrote: I managed to get it to

[beagleboard] Re: Error Listening To Socket - MOOS-IvP won't run on Beaglebone Black

2014-03-11 Thread haeusler . phillip
I have found the problem and fixed it. When the socket is created it needs to be TCP. However when getprotobyname(_sName) is called in the XPCGetProtocol class to lookup the correct protocol number in /etc/protocols it returns the value of the previous time it was called, which was when a UDP

[beagleboard] Re: Error Listening To Socket - MOOS-IvP won't run on Beaglebone Black

2014-03-05 Thread haeusler . phillip
I managed to get it to work in single threaded mode. Has any one had any issues with threads with the BBB? On Wednesday, 5 March 2014 18:58:42 UTC+10:30, haeusler...@gmail.com wrote: I am attempting to run MOOS-IvPhttp://oceanai.mit.edu/moos-ivp/pmwiki/pmwiki.php?n=Main.HomePageon a