Is sys/time.h a windows header? I'm trying to compile code and it says that the header is missing. Where can I download sys/time.h?
Thanks
http://www.cplusplus.com/reference/clibrary/ctime/ [ ^ ]
http://en.wikipedia.org/wiki/Time.h [ ^ ]
did you #include <time.h> (if using standard time.h)?
Or if you're using netbsd version:
http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/sys/time.h?rev=1.49&content-type=text/x-cvsweb-markup [ ^ ]
Thank you once again Albert...will research now. This is the code.

#ifdef WIN32
#include <sys time.h="">
#else
#include <time.h>
#endif

#include "pcap.h"
#include "pcap/bpf.h
#include <stdio.h>



int main()
{
pcap_if_t *alldevs;
pcap_if_t *d;
int i=0;
char errbuf[PCAP_ERRBUF_SIZE];

/* Retrieve the device list from the local machine */
if (pcap_findalldevs_ex(PCAP_SRC_IF_STRING, NULL, &alldevs, errbuf) == -1)
{
cout << "Error in pcap_findalldevs_ex: %s\n";
return 0;
}

/* Print the list */
for(d= alldevs; d != NULL; d= d->next)
{
printf("%d. %s", ++i, d->name);
if (d->description)
printf(" (%s)\n", d->description);
else
printf(" (No description available)\n");
}

if (i == 0)
{
printf("\nNo interfaces found! Make sure WinPcap is installed.\n");
return 0;
}

/* We don't need any more the device list. Free it */
pcap_freealldevs(alldevs);

return 0;
}
  • Read the question carefully.
  • Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  • If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  • Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question. Let's work to help developers, not make them feel stupid.
  •