| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 515 人关注过本帖
标题:请问这个C++程序那里不对?调试不成功?
取消只看楼主 加入收藏
chenhuang668
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2006-5-15
收藏
 问题点数:0 回复次数:0 
请问这个C++程序那里不对?调试不成功?

请强人指点
#include " stdio.h"

#include " stdlib.h"

#include "Winsock2.h"

#include " iphelpapi.h"

Typedef DWORD (CALLBACK*PSARP) (

IPAddr DestIP, / /目的主机IP地址

IPAddr SrcIP, / / 源主机IP地址

PULONG pMacAddr, / / 返回的MAC地址

PULONG PhyAddrLen, / / 返回MAC地址的长度

addr) ; / /定义结构体

void main ( int argc, char**argv )

{

PSARP pSARP ;

HINSTANCE hInst; / /实例句柄

hInst =LoadLibrary( " iphelpapi.dll" ) ; / /加载IP Helper API所需的库文件

pSARP = ( PSARP) GetProcAddress ( hInst, " SendARP" ) ; / /获取SendARP函数的地址

/ /处理命令行参数

if ( argc ! = 2 )

{

printf ( " Get aMacAddress from host in a segment! \n" ) ;

printf ( "Usage: \n \GetMac. exe [Host IP] \n \n" ) ;

printf ( " Example: \n \GetMac. exe 192. 168. 0. 1 \n \n" ) ;

exit (0) ;

}

printf ( " \n IpAddress: % s\n" , argv[ 1 ] ) ;

int nRemoteAddr = inet_addr( argv[ 1 ] ) ; / /发送ARP查询包获得远程MAC地址

unsigned charmacAddress[ 6 ];

PULONG macAddLen = 6;

int iRet = pSARP ( nRemoteAddr,NULL, ( PULONG) &macAddress, &macAddLen) ;

if ( iRet = =NO_ERROR)

{

printf ( "MacAddress: " ) ;

for ( int i = 0; i < 6; i + + ) / /格式化输出获取的MAC地址

{

printf ( " %. 2x" ,macAddress[ i ] ) ;

if ( i < 5) p rintf ( " - " ) ;

}

}

else

printf ( " SendARP Error: % d \n" , GetLastError( ) ) ;

printf ( " \n" ) ;

}

搜索更多相关主题的帖子: include 强人 
2006-05-16 20:47
快速回复:请问这个C++程序那里不对?调试不成功?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.038730 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved