Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to turn off Nagle's algorithm for a BSD socket using:

setsockopt(newSock, IPPROTO_TCP, TCP_NODELAY, (char*)&flag, sizeof flag);

but the compiler claims TCP_NODELAY hasn't been seen before:

error: `TCP_NODELAY' undeclared (first use this function)

This is the full list of includes for the file this is in:

#include <arpa/inet.h>
#include <fcntl.h>
#include <iostream>
#include <netdb.h>
#include <string>
#include <sys/socket.h>
#include <sys/types.h>
using namespace std;

I also have the -lnsl and -lsocket linker options, but it just won't compile. Am I missing something?

All of this is on a Solaris 8 machine.

share|improve this question

2 Answers

up vote 8 down vote accepted

Looks like you are missing #include <netinet/tcp.h> - that's where TCP_... defines live.

share|improve this answer
Exactly right, thanks! – Benoit Jun 25 '09 at 18:46
I tried this on Solaris 10 (I had to add it after the headers you have already included) and it worked. I got errors with including <string> - but i tried a C program, so I had to change it to <string.h> – poundifdef Jun 25 '09 at 18:49

I don't have a Solaris box handy, only a Linux one.

grep -ri TCP_NODELAY /usr/include/*

results in:

/usr/include/linux/tcp.h:#define TCP_NODELAY            1       /* Turn off Nagle's algorithm. */
/usr/include/netinet/tcp.h:#define      TCP_NODELAY      1      /* Don't delay send to coalesce packets  */

Perhaps you could try something similar?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.