I recently came across a good book by Richard Stevens, his "UNIX Network Programming, Volume 1, 2nd Edition" (in C), published 1998. I was reading it for the past week & realized while practicing some of the programs, that several methods used in it are not compliant to the standards or have a bit different approach. Also reproducing the code exactly doesn't work as expected either. Is it still worthwhile to continue, or are there better substitutes?

I would like to read good books, but on the same time have a better grasp on the basics or the underlying things. Another question is how much does these sort of books help in the long run, for a programmer. Especially the fact though C exposes a lot, but more & more companies are preferring Java, C#, etc for faster development (I guess).

link|improve this question

I don't understand...Did I do something wrong by asking this question here to get downvoted?? – loxxy Sep 16 '10 at 14:18
I'm not downvoting but voting to close. I believe your question is subjective and argumentative. You give no code whatsoever and you are speaking in such a great deal of abstraction that no answer will actually suffice. If you want to know if method A is better than method B do ask, with code. Else you'll probably get closed. – Frankie Sep 16 '10 at 14:23
2  
Code??....What should ask about the code? I can understand it fine. The only problem here is the code is not compliant, which is a known thing for people who have those books. This is probably why I have filed this in programming languages & books category. – loxxy Sep 16 '10 at 14:37
1  
Well, give an example of the code you say it's not compliant. – Adriano Varoli Piazza Sep 16 '10 at 15:03
feedback

closed as not constructive by Frankie, Joseph Mastey, Ether, dmckee, gnovice Sep 17 '10 at 20:47

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

Which edition? (Ah, the 2nd Edition...from 1998).

UNIX Network Programming Volume 1, 3rd Edition is pretty good. If that's what you've got, can you illustrate where there is a problem? Since it is not what you've got, then you need to get the updated version. For learning, the outdated edition is more of a hindrance than a help.

The third edition - which is no longer maintained by Stevens himself since he died a few years ago - is a very good book. His other books are also worth reading; they too have been revised.


Subject-wise: I make my living programming in C, sometimes doing network programming. I use Stevens to back up my knowledge, and to gain ideas. I think it was well worth my time learning C, but I did that over 25 years ago. I still think that it helps me understand modern computing languages better - in the same way that having worked with 8-bit microprocessors like the Z80 helps me understand what goes on at the hardware level better. Sure, the modern languages (C#, Java, etc) provide extra facilities, but they have to be written in some language in the first place (and that generally isn't assembler).

I can't predict for you reliably what will happen over your career; I can reasonably confidently predict things will be very different in 20 years, but I don't have a good insight into the details. I can also predict that a lot of things will be remarkably similar to now too - inertia applies. There will be networks in the future; people will have to provide the functionality that provides and supports the network, as well as the functionality that exploits the network. The TCP/IP protocol - likely IPv6 - will probably still be the dominant protocol on the network. So, knowing how it works will be beneficial.

link|improve this answer
this is the second edition I have & the code in this is not ANSI compliant I assume. I understand all that I have read, no problem....But just making sure that I am not disappointed later to have read something which has drastically changed over years. – loxxy Sep 16 '10 at 14:16
1  
The second edition is pretty archaic; it probably doesn't cover IPv6, or - if it does - it covers the old interfaces etc. Save yourself the pain; get the third edition. – Jonathan Leffler Sep 16 '10 at 14:53
thank you. I would have probably spent another 2 weeks with this 2nd edition....I guess I'll get the newer one. – loxxy Sep 16 '10 at 14:57
I recently found TAOCP vols 1-3 and TCP/IP Illustrated vols 1-3 at an antique store for $5 each! yay me! – Ether Sep 16 '10 at 15:18
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.