29 is the socket number, you will use that in your calls to other socket-API functions (bind, connect, etc).
You don't see it in netstat because you haven't bound it to anything yet. In order for it to show up there, call connect
or bind
, accept
, listen
(depending on what you plan to do with it).
bstpierre
2010-10-27 16:21:55