This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Link Errors with Net Functions


Sergey Okhapkin wrote:
> 
> Michael Godfrey wrote:
> > I'm having trouble linking with the htons(), htonl(), ntohs(), and
> > ntohl() host to/from network byte order functions.
> 
> Did You include <arpa/inet.h>?

<arpa/inet.h> includes  <netinet.h/in.h> which includes <cygwin32/in.h>
which includes <asm/byteorder.h> which defines htonl etc.,
but none of those include files manage to enclose the definition
in extern "C" { ... }.  Bugga bugga bugga.

Michael, try

extern "C" {
#include <arpa/inet.h>
}

--
<J Q B>
-
For help on using this list, send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]