Xref: utzoo comp.sys.hp:6126 comp.misc:10069 Path: utzoo!utgpu!news-server.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!uc!shamash!vtcqa From: vtcqa@shamash.cdc.com (Jeff Comstock) Newsgroups: comp.sys.hp,comp.misc Subject: HP-UX BSD Sockets in C lib ? Keywords: socket, bsd, hpux Message-ID: <25588@shamash.cdc.com> Date: 10 Sep 90 14:47:38 GMT Followup-To: comp.sys.hp Organization: Control Data Corporation, Arden Hills, MN. Lines: 18 HPUX has ARPA services, ie telnet, ftp, smtp, etc. What I would like to know is does the c library support socket calls, like my favorites: connect(2), accept(2), bind(2), socket(2), listen(2) . In case your still wondering - the protos are: connect( int s, struct sockaddr *name, int namelen); accept( int s, struct sockaddr *name, int *addrlen); bind ( int s, struct sockaddr *name, int namelen); socket(int domain, type, protocol); listen(int s, backlog); I need these to write software that will connect to some special services on our network. Jeff