blob: 366a42ac0247b12492edcb23867f5c73c9eda72d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* Module: lbpathtest.hh
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation.
*/
#ifndef __LBPATHTEST_HH__
#define __LBPATHTEST_HH__
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <iostream>
#include "lbdata.hh"
using namespace std;
class LBPathTest
{
public:
LBPathTest(bool debug);
~LBPathTest();
void
start(LBData &lb_data);
private:
bool _debug;
};
#endif //__LBPATHTEST_HH__
|