6

WinPcapからインストールされた n/w デバイスに関する詳細情報を取得する例を試しています。

WinPcapライブラリを含めるための指示にも従いましたが、それでもコンパイラpcap_findalldevs_exは未定義であると不平を言います

ラインでif (pcap_findalldevs_ex(source, NULL, &alldevs, errbuf) == -1)

私のコード:

#include "stdafx.h"
#include <stdio.h>
#include "pcap.h"
#include <winsock2.h>
#pragma comment(lib, "ws2_32")

// Function prototypes
void ifprint(pcap_if_t *d);
char *iptos(u_long in);
char* ip6tos(struct sockaddr *sockaddr, char *address, int addrlen);



int _tmain(int argc, _TCHAR* argv[])
{
    pcap_if_t *alldevs;
    pcap_if_t *d;
    char errbuf[PCAP_ERRBUF_SIZE+1];
    char source[PCAP_ERRBUF_SIZE+1];

    printf("Enter the device you want to list:\n"
        "rpcap://              ==> lists interfaces in the local machine\n"
        "rpcap://hostname:port ==> lists interfaces in a remote machine\n"
        "                          (rpcapd daemon must be up and running\n"
        "                           and it must accept 'null' authentication)\n"
        "file://foldername     ==> lists all pcap files in the give folder\n\n"
        "Enter your choice: ");

    fgets(source, PCAP_ERRBUF_SIZE, stdin);
    source[PCAP_ERRBUF_SIZE] = '\0';

    /* Retrieve the interfaces list */
    if (pcap_findalldevs_ex(source, NULL, &alldevs, errbuf) == -1)
    {
        fprintf(stderr,"Error in pcap_findalldevs: %s\n",errbuf);
        exit(1);
    }

    /* Scan the list printing every entry */
    for(d=alldevs;d;d=d->next)
    {
        ifprint(d);
    }

    pcap_freealldevs(alldevs);

    return 1;

    return 0;
}

/* Print all the available information on the given interface */
void ifprint(pcap_if_t *d)
{
    //Code removed to reduce length and it contains no errors.
}



/* From tcptraceroute, convert a numeric IP address to a string */
#define IPTOSBUFFERS    12
char *iptos(u_long in)
{
    //Code removed to reduce length
}

char* ip6tos(struct sockaddr *sockaddr, char *address, int addrlen)
{
        //Code removed to reduce length
}

誰かが私を正しい方向に向けることができますか?

編集:上記のコードで使用するpcap_findalldevs(&alldevs, errbuf)と、正常にビルドされます。したがって、dllへのリンクに問題はないと思います。

編集 1:エラー

エラー C3861: 'pcap_findalldevs_ex': 識別子が見つかりません
IntelliSense: 識別子 "pcap_findalldevs_ex" は定義されていません

ありがとう。

4

1 に答える 1

8

pcap_findalldevs_ex定義した場合にのみ存在しますHAVE_REMOTE

プロジェクトプロパティにプリプロセッサ定義として追加HAVE_REMOTEするか、pcap.hのすべてのインクルードに対して次の手順を実行します。

#define HAVE_REMOTE
#include "pcap.h"
于 2011-03-16T08:52:11.007 に答える