資源描述:
《怎樣使用花生殼域名解析出ip》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫(kù)。
1、怎樣使用花生殼域名解析出IP?----即通常所說(shuō)的"上線"2010年10月05日星期二下午01:09本例僅為學(xué)習(xí).一個(gè)寫遠(yuǎn)控的,連上線都不會(huì).一問(wèn)三不知,還能算是個(gè)網(wǎng)絡(luò)編程的程序員?上線:就是敲門,1臺(tái)電腦給另外一臺(tái)電腦敲門,有人在就進(jìn)去,沒(méi)人在就回去.這是最基本的常識(shí).方法:用的是原始套接字icmp獲取的,其實(shí)就是一個(gè)ping程序(包括IP與網(wǎng)站名的那種ping,僅IP的不可以)主程序:ping.h與ping.cpp封裝好的.直接在你的dlg.cpp程序中調(diào)用.其實(shí)算不上什么本事,都是抄來(lái)的.因?yàn)椴皇歉銓I(yè)的遠(yuǎn)控,僅是學(xué)習(xí),所以我也
2、沒(méi)花時(shí)間仔細(xì)去學(xué)這.cpp順便介紹下花生殼:從http://www.oray.com/下載花生殼軟件,登錄后116.209.15.221就是本機(jī)現(xiàn)在的外網(wǎng)IP.szlmwbcgc.gicp.net就是你賬號(hào)對(duì)應(yīng)的網(wǎng)站,無(wú)論你用的是哪一臺(tái)機(jī)器.(那么端口呢?端口指定的一樣的).花生殼其它的就不用管了.你只要做一步即可:打開(kāi)花生殼軟件,登錄你的賬號(hào)即可.難嗎?不難,很簡(jiǎn)單的1步--------------------------源代碼包括ping.h與ping.cpp,以及外部調(diào)用的函數(shù)***dlg.cpp----------------
3、------------------------------------------------ping.h--------------------------------------------//Ping.h:interfacefortheCPingclass.////////////////////////////////////////////////////////////////////////#if!defined(AFX_PING_H__DD196130_22F6_48DA_BAFC_B799A0034437__INC
4、LUDED_)#defineAFX_PING_H__DD196130_22F6_48DA_BAFC_B799A0034437__INCLUDED_#if_MSC_VER>1000#pragmaonce#endif//_MSC_VER>1000#include#include#include#include#defineIP_RECORD_ROUTE0x7#defineDEF_PACKET_SIZE32#defineMAX_PACKET??????10
5、24?????//MaxICMPpacketsize#defineMAX_IP_HDR_SIZE60???????//MaxIPheadersizew/options#defineICMP_ECHO???????8#defineICMP_ECHOREPLY??0#defineICMP_MIN????????8//Minimum8-byteICMPpacket(header)classCMyPingDlg;typedefstruct_iphdr{???unsignedint??h_len:4;???????//Lengthofthehe
6、ader???unsignedint??version:4;?????//VersionofIP???unsignedchartos;???????????//Typeofservice???unsignedshorttotal_len;?????//Totallengthofthepacket???unsignedshortident;?????????//Uniqueidentifier???unsignedshortfrag_and_flags;//Flags???unsignedcharttl;???????????//Tim
7、etolive???unsignedcharproto;?????????//Protocol(TCP,UDPetc)???unsignedshortchecksum;??????//IPchecksum???unsignedint??sourceIP;???unsignedint??destIP;}IpHeader;typedefstruct_icmphdr{???BYTE??i_type;???BYTE??i_code;????????????????//Typesubcode???USHORTi_cksum;???USHORTi
8、_id;???USHORTi_seq;???//Thisisnotthestandardheader,butwereservespacefortime???ULONGtimestamp;}IcmpHeader;////I