Yosuke_
01-21-2005, 06:48 PM
Hello!
For example in socket programming, when I create a simple client, I use header files like:
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <netinet/in.h>
And when I compile my code, the required functions are compiled into executable right? But do my Client need some libraries like Windows clients need Winsock libraries? or is all the required things compiled in executable? And for example socket(); connect(); are system calls right? Thank you!
For example in socket programming, when I create a simple client, I use header files like:
#include <sys/socket.h>
#include <sys/types.h>
#include <arpa/inet.h>
#include <netinet/in.h>
And when I compile my code, the required functions are compiled into executable right? But do my Client need some libraries like Windows clients need Winsock libraries? or is all the required things compiled in executable? And for example socket(); connect(); are system calls right? Thank you!