Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dewils80
  • Order by date
  1. dewils80

    simple c++ socket server help

    You need the following libraries: #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> and you use the following system calls: socket() -> bind() -> listen() -> accept() This is the order in which they will need to be used. I suggest that you look up...
  2. dewils80

    How do I develop C/C++ programs for UNIX

    Once you have your linux machine up and running, and you can compile programs, the way to start with the sockets idea is this: First of all you need to include <sys/types.h>, <sys/socket.h>, <netinet/in.h> and <arpa/inet.h> fd=socket(proto,type,?) creates a socket and returns a file...

Part and Inventory Search

Back
Top