Maverick
Maverick

Reputation: 2032

Send data packets from one linux server to other server (LINUX)

I am new to C programming. I have two Linux machine. I want to send some data packets from one Linux machine to other Linux machine. Please suggest some references. I found so many things on net, and bit confused how to proceed. Please suggest.

Upvotes: 1

Views: 469

Answers (1)

Nikolai Fetissov
Nikolai Fetissov

Reputation: 84169

Starting from scratch with both C and networking is a bit tough, but the best online sockets tutorial would be Beej's Guide to Network Programming.

If you are serious about learning network programming though, get this book - you'll never regret: UNIX Network Programming, Volume 1 by W. Richard Stevens.

Upvotes: 3

Related Questions