Prev: Not able to change baud rate
Next: Basic Shell concept
From: Bill Cunningham on 25 Mar 2010 15:33 Would this header be all I need to create a socket for an smtp and pop connection? http://www.opengroup.org/onlinepubs/009695399/
From: Bill Cunningham on 25 Mar 2010 16:47 "Bill Cunningham" <nospam(a)nspam.invalid> wrote in message news:4babac5b$0$12430$bbae4d71(a)news.suddenlink.net... > Would this header be all I need to create a socket for an smtp and pop > connection? > > http://www.opengroup.org/onlinepubs/009695399/ Oops. It's supposed to be sys/socket.h Bill
From: Rick Jones on 26 Mar 2010 17:54 Bill Cunningham <nospam(a)nspam.invalid> wrote: > "Bill Cunningham" <nospam(a)nspam.invalid> wrote in message > news:4babac5b$0$12430$bbae4d71(a)news.suddenlink.net... > > Would this header be all I need to create a socket for an smtp and > > pop connection? > > > > http://www.opengroup.org/onlinepubs/009695399/ > Oops. It's supposed to be sys/socket.h It would be enough to create the socket, but it might not be enough to do anything useful with it :) Depending on how barebones your name/IP address maniupulation is to be. For example, the HP-UX 11.11 manpage for getaddrinfo() also suggests including netdb.h. Or if you are still using gethostbyaddr() (should migrate, BTW) that would add netinet/in.h to netdb.h and socket.h. rick jones -- oxymoron n, commuter in a gas-guzzling luxury SUV with an American flag these opinions are mine, all mine; HP might not want them anyway... :) feel free to post, OR email to rick.jones2 in hp.com but NOT BOTH...
From: Bill Cunningham on 28 Mar 2010 17:17 "Rick Jones" <rick.jones2(a)hp.com> wrote in message news:hojadr$s31$1(a)usenet01.boi.hp.com... > It would be enough to create the socket, but it might not be enough to > do anything useful with it :) Depending on how barebones your name/IP > address maniupulation is to be. For example, the HP-UX 11.11 manpage > for getaddrinfo() also suggests including netdb.h. Or if you are > still using gethostbyaddr() (should migrate, BTW) that would add > netinet/in.h to netdb.h and socket.h. What about a smtp and pop connection? Bill
From: Ian Collins on 28 Mar 2010 16:23
On 03/29/10 10:17 AM, Bill Cunningham wrote: > "Rick Jones"<rick.jones2(a)hp.com> wrote in message > news:hojadr$s31$1(a)usenet01.boi.hp.com... > >> It would be enough to create the socket, but it might not be enough to >> do anything useful with it :) Depending on how barebones your name/IP >> address maniupulation is to be. For example, the HP-UX 11.11 manpage >> for getaddrinfo() also suggests including netdb.h. Or if you are >> still using gethostbyaddr() (should migrate, BTW) that would add >> netinet/in.h to netdb.h and socket.h. > > What about a smtp and pop connection? A connection is a connection. It's what you do with it that matters. By the way, your clock is an hour fast. -- Ian Collins |