- 1、本文档共36页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
freebsd网络编程向导
/~beej/guide/net/
Beej s Guide to Network Programming
Using Internet Sockets
Version 1.5.3 (01-Nov- 1997)
[/~beej/guide/net]
Intro
Hey! Socket programming got you down? Is this stuff just a little too
difficult to figure out from the man pages? You want to do cool Internet
programming, but you dont have time to wade through a gob of structs trying
to figure out if you have to call bind() before you connect(), etc., etc.
Well, guess what ! Ive already done this nasty business, and Im dying to
share the information with everyone! Youve come to the right place. This
document should give the average competent C programmer the edge s/he needs
to get a grip on this networking noise.
Audience
This document has been written as a tutorial, not a reference. It is
probably at its best when read by individuals who are just starting out with
socket programming and are looking for a foothold. It is certainly not the
complete guide to sockets programming, by any means.
Hopefully, though, itll be just enough for those man pages to start making
sense... :-)
Platform and Compiler
Most of the code contained within this document was compiled on a Linux PC
using Gnus gcc compiler. It was also found to compile on HPUX using gcc.
Note that every code snippet was not individually tested.
Contents:
* What is a socket?
* Two Types of Internet Sockets
* Low level Nonsense and Network Theory
* structs--Know these, or aliens will destroy the planet !
* Convert the Natives!
* IP Addresses and How to Deal With Them
* socket()--Get the File Descriptor !
* bind()--What port am I on?
* connect()--Hey, you !
* listen()--Will somebody please call me?
* accept()--Thank you for calling port 3490.
* send() and recv()--Talk to me, baby!
* sendto() and recvfrom()--Tal
文档评论(0)