How much different is windows and linux in network programming?
I'm reading <<Understanding Linux Network internals>>
,but not s开发者_JAVA百科ure how much of it will also apply to windows?
I think you will find that they are very similar as both are based on the standard Berkley sockets API. Assuming you are programming in C here, you'll see the same sorts of functions with similar usage in both windows and unix (listen, accept, bind, etc).
There are of course many windows-specific socket functions though, mostly for things like async IO. Here's a list of the Windows socket functions so you can have a look for yourself.
精彩评论