M BUZZ CRAZE NEWS
// news

Meaning of "netinet" in socket programming [closed]

By Sarah Rodriguez

What are the meanings of "netinet" and "in" in "#include <netinet/in.h>" ?

2 Answers

"#include <netinet/in.h>

The header file in.h contains constants and structures needed for internet domain addresses."

As quoted at

It means "Internet"... obvious really.

2