|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
使用gcc或g++进行编译,使用gdb进行调试;
在socket编程时,会呈现指定了ip,端标语,却连不上,这是由于收集地点跟当地主机地点的字符按次纷歧样招致的。
在linux下供应了一些操纵函数,以下:
unsignedlonginthtonl(unsignedlonginthostlong);
用来将参数指定的32位hostlong转换成收集字符按次。
unsignedshortinthtons(unsignedshortinthostshort);
用来将参数指定的16位hostshort转换成收集字符按次。
unsignedlongintinet_addr(constchar*cp);
用来将参数cp所指的收集地点字符串转换成收集所利用的二进制数字。
收集地点字符串是以数字和点构成的字符串,比方:“163.13.132.68”。
intinet_aton(constchar*cp,structin_addr*inp);
用来将参数cp所指的收集地点字符串转换成收集利用的二进制的数字,然后存于参数inp所指的in_addr布局中。
char*inet_ntoa(structin_addrin);
用来将参数in所指的收集二进制的数字转换成收集地点,然后将指向此收集地点字符串的指针前往。
unsignedlonginet_network(constchar*addr);
这个函数必要一个在参数addr中包括一个点分开的地点输出字符串。
前往值是主机按次的IP地点的32位值。
Theinet_lnaof()functionreturnsthelocalhostaddresspartof
theInternetaddressin.Thelocalhostaddressisreturnedinlocalhostbyteorder.
Theinet_netof()functionreturnsthenetworknumberpartoftheInternetAddressin.
Thenetworknumberisreturnedinlocalhostbyteorder
</p>
linux系统的文件布置,etc/,opt/目录的内容等; |
|