Symulacja NAT na przedmiot Symulacje Komputerowe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

50 lines
462 B

/*
* NATItem.cpp
*
* Created on: 10-01-2017
* Author: Piotr Dergun
*/
#include "NATItem.h"
NATItem::NATItem()
{
this->ip = "0.0.0.0";
this->port = 0;
this->timeout = 0;
}
NATItem::~NATItem()
{
// TODO Auto-generated destructor stub
}
void NATItem::setIp(string ip)
{
}
void NATItem::setPort(int port)
{
}
void NATItem::setTimeout(int timeout)
{
}
string NATItem::getIp()
{
}
int NATItem::getPort()
{
}
int NATItem::getTimeout()
{
}