1 #ifndef PCAPP_PCAP_REMOTE_DEVICE_LIST 2 #define PCAPP_PCAP_REMOTE_DEVICE_LIST 7 #include "PcapRemoteDevice.h" 28 class PcapRemoteDeviceList
31 std::vector<PcapRemoteDevice*> m_RemoteDeviceList;
32 IPAddress m_RemoteMachineIpAddress;
33 uint16_t m_RemoteMachinePort;
34 PcapRemoteAuthentication* m_RemoteAuthentication;
37 PcapRemoteDeviceList() : m_RemoteMachinePort(0), m_RemoteAuthentication(NULL) {}
39 PcapRemoteDeviceList(
const PcapRemoteDeviceList& other);
40 PcapRemoteDeviceList& operator=(
const PcapRemoteDeviceList& other);
42 void setRemoteMachineIpAddress(
const IPAddress& ipAddress);
43 void setRemoteMachinePort(uint16_t port);
44 void setRemoteAuthentication(
const PcapRemoteAuthentication* remoteAuth);
50 typedef typename std::vector<PcapRemoteDevice*>::iterator RemoteDeviceListIterator;
55 typedef typename std::vector<PcapRemoteDevice*>::const_iterator ConstRemoteDeviceListIterator;
57 ~PcapRemoteDeviceList();
72 static PcapRemoteDeviceList* getRemoteDeviceList(
const IPAddress& ipAddress, uint16_t port);
86 static PcapRemoteDeviceList* getRemoteDeviceList(
const IPAddress& ipAddress, uint16_t port, PcapRemoteAuthentication* remoteAuth);
91 IPAddress getRemoteMachineIpAddress()
const {
return m_RemoteMachineIpAddress; }
96 uint16_t getRemoteMachinePort()
const {
return m_RemoteMachinePort; }
103 PcapRemoteDevice* getRemoteDeviceByIP(
const IPv4Address& ip4Addr)
const;
110 PcapRemoteDevice* getRemoteDeviceByIP(
const IPv6Address& ip6Addr)
const;
117 PcapRemoteDevice* getRemoteDeviceByIP(
const IPAddress& ipAddr)
const;
124 PcapRemoteDevice* getRemoteDeviceByIP(
const std::string& ipAddrAsString)
const;
129 RemoteDeviceListIterator begin() {
return m_RemoteDeviceList.begin(); }
134 ConstRemoteDeviceListIterator begin()
const {
return m_RemoteDeviceList.begin(); }
139 RemoteDeviceListIterator end() {
return m_RemoteDeviceList.end(); }
144 ConstRemoteDeviceListIterator end()
const {
return m_RemoteDeviceList.end(); }
The main namespace for the PcapPlusPlus lib.