-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCamTable.hpp
47 lines (36 loc) · 897 Bytes
/
CamTable.hpp
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
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* File: CamTable.h
* Author: xpalam00
*
* Created on 11. únor 2012, 21:15
*/
#ifndef CAMTABLE_H
#define CAMTABLE_H
#include <iostream>
#include <map>
#include "Iface.hpp"
#include "CamTableRecord.hpp"
using namespace std;
class CamTable {
public:
CamTable();
virtual ~CamTable();
/**
* Přidá do tabulky zařízení, které se je připojeno k danému interface.
* @param Iface Síťová karta switche.
* @param MacAddress Adresa zařízení, které je k interface připojeno.
*/
void add(Iface *, MacAddress *);
Iface *find(MacAddress *);
/**
* Exportuje tabulku v textovém formátu.
* @param ostream Cílový output stream
* @param CamTable CAM tabulka
* @return ostream
*/
friend ostream &operator<<(ostream &, const CamTable *);
private:
map<string, CamTableRecord*> records;
static const unsigned int MAX_AGE = 30;
};
#endif /* CAMTABLE_H */