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.
 
 

34 lines
694 B

/*
* NATItem.h
*
* Created on: 10-01-2017
* Author: Piotr Dergun
*/
#ifndef NATITEM_H_
#define NATITEM_H_
#include "common.h"
class NATItem
{
string ip; // IP wewn. do którego ma trafić odpowiedź / z którego przyszło żądanie
int port; // port komputera wewn. do którego ma trafić odpowiedź
unsigned long timeout; // czas (w sekundach) zajętości portu (0 - port wolny)
public:
NATItem();
bool isFree();
void increaseTimeout(int timeout);
const string& getIp() const;
void setIp(const string& ip);
int getPort() const;
void setPort(int port);
unsigned long getTimeout() const;
void setTimeout(int timeout);
void free();
};
#endif /* NATITEM_H_ */