IP封包信息(50分)

  • 主题发起人 主题发起人 anper
  • 开始时间 开始时间
A

anper

Unregistered / Unconfirmed
GUEST, unregistred user!
大家好!我有几个DELPHI问题想请教:
     1、WSAStartup(2,WSAData); 这个函数实现什么功能?
     2、
       PIPOptionInformation = ^TIPOptionInformation;
      TIPOptionInformation=packed record
    TTL: Byte;
     TOS: Byte;
     Flags: Byte;
     OptionsSize: Byte;
     OptionsData: PChar;
   end;
      这个记录组各个记录都记录什么,比如TTL是记录什么的?或者能否告诉我哪个地方有资料?
 
1.WSAStartup是用来初始化Socket的。
The Windows Sockets WSAStartup function initiates use of WS2_32.DLL by a process.
int WSAStartup (
WORD wVersionRequested,
LPWSADATA lpWSAData
);

Parameters
wVersionRequested
[in] The highest version of Windows Sockets support that the caller can use. The high order byte specifies the minor version (revision) number; the low-order byte specifies the major version number.
lpWSAData
[out] A pointer to the WSADATA data structure that is to receive details of the Windows Sockets implementation.

2.这就是IP包的格式。
TTL:time to live,这个IP包的“生存期”
TOS:type of service
...
你去买本TCP/IP或计算机网络的书吧,在介绍IP层的部分有详细的介绍。
 
谢谢zw84611的答案
 
后退
顶部