-5

sniffer.h というファイルをインクルードしようとすると、Eclipse で「複数定義」エラーが発生します。

sniffer.h:

#ifndef SNIFFER_H_
#define SNIFFER_H_
#include "sys/types.h"
#include "sys/socket.h"
#include "netinet/in.h"
#include "netdb.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <iostream>
#include <sstream>
#include <fstream>
#include <queue>
#include <pthread.h>
#include <sys/timeb.h>
#include <map>
#include <algorithm>
#include <math.h>
#include <syslog.h>
#include <signal.h>
#include <asm-generic/errno-base.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
#include <iterator>
//Syslog libraries.
#include <sys/wait.h>
#include <ctime>
using namespace std;


string gconfigfilename = "config";          //Holds the config file name, dynamic     because of the add_interface option.
int pipehandler;                            //pipe handler for     the pipe that the gulp writes to
string pipeFullName;                        //absolute path for the pipe that the gulp writes to
FILE* pipe_fd;

また、sniffer.cpp にはすべての関数のステートメントが含まれています。

#include "../h/sniffer.h"

     void OpenPipeRead(/*string sinterface*/)
{
    int ret_val;
    pipeFullName = "";
    pipeFullName.append(mconfig[C_PIPEPATH]);
    //Its not empty only when there is argument for parallal telepath_sniff instances.
    pipeFullName.append(mconfig[C_PIPENAME]);
    //if(strcmp(sinterface.c_str(), "") != 0)
    //  lpipename.append("_" + sinterface);     
    printf("Try to open Pipe for reading\n");
    syslog(LOG_INFO, "Try to open Pipe for reading\n"); 
    /* Create the named - pipe */
    ret_val = mkfifo(pipeFullName.c_str(), 0666);
    if ((ret_val == -1) && (errno != EEXIST)) {
        perror("Error creating the pipe");
        syslog(LOG_ERR, "Error creating the pipe");         
        exit(1);
    }       
    if((pipehandler = open(pipeFullName.c_str(), O_RDWR)) < 1)      /* Open the pipe for reading and writing , in append mode */
    {
       perror("Failed to open pipe");
       syslog(LOG_ERR, "Failed to open pipe");
       exit(1);
    }
    printf("Pipe opened.\n");
    syslog(LOG_INFO, "Pipe opened.\n");
}

ただし、最初の関数では、pipeFullName再び複数の定義があると言われています。

一度だけ含めました。文字列は sniffer.h で定義されています。

4

1 に答える 1

5

ファイルを含めないでください.cpp!!!

そうすることで、One definition Ruleに違反することになります。

通常の方法は、ヘッダー ファイルに宣言を配置し、cpp ファイルに定義を配置することです。
宣言は何度でもできますが、定義は 1 回だけです。

したがって、ヘッダー ファイルのみを含める必要があります。cpp ファイルをインクルードすると、cpp ファイル内のシンボルの定義のコピーが、ヘッダー ファイルをインクルードするすべての翻訳単位に追加され、ODR に違反します。

于 2012-12-26T09:30:48.283 に答える