Greets,<br><br>I am currently attempting to port enet (so wonderful a library :)) to the Nintendo DS homebrew platform using the dswifi library (<a href="http://akkit.org/dswifi/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://akkit.org/dswifi/</a>) along with DevKitARM/libnds (<a href="http://www.devkitpro.org/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
http://www.devkitpro.org/</a>). This is going well (enet is very easy to port, and dswifi has a nearly-complete Berkeley Sockets interface :)), but there are some socket constants/functions/struct missing in the platform library. I am attempting to get in touch with the dswifi project head, but in the meantime I was hoping you nice chaps might have some advice. :)
<br><br>These symbols are expected (and missing):<br>&nbsp;- SOL_SOCKET<br>&nbsp;- SO_RCVBUF<br>&nbsp;- SO_SNDBUF<br>&nbsp;- SO_BROADCAST<br>&nbsp;- SOMAXCONN<br><br>I am worried that missing the SOL_SOCKET and associated socket options constants might mean this functionality is missing. Hopefully I will hear back soon if this is the case, but assuming the worst is there any advice for safely extracting these from the enet port?
<br><br>SOMAXCONN seems more likely to just be a missing constant then a missing feature, unless I am missing something? :)<br><br>The function gethostbyaddr(..) is missing in dswifi. The gethostbyname(..) function is present, but I am unsure (very new to socket programming) if this is safe to use in it&#39;s place. From googling it looks like it should be &#39;ok&#39;, but anyone have a warning to fire off before I blunder?
<br><br>In dswifi inet_ntoa(..) was not found, but it doesn&#39;t look too bad to author my own..<br><br>The last things missing are the msgHdr struct and the
sendmsg(..)/rcvmsg(..) functions (which use it). Since dswifi doesn&#39;t support this I fear I am going to either need to replace these in my enet port with sendto(..)/recvfrom(..) or author the msg functions internally using sendto(..)/recvfrom(..). Anyone have any thoughts on this? I have been trying to research it, but am not sure exactly how sendmsg(..)/rcvmsg(..) internally function at this point.
<br><br>Any input is appreciated. Thanks!<br><br>-- <br>Josh Szepietowski<br><a href="http://www.goosey.info" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.goosey.info</a>