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

7 years ago
  1. /*
  2. * NATItem.h
  3. *
  4. * Created on: 10-01-2017
  5. * Author: Piotr Dergun
  6. */
  7. #ifndef NATITEM_H_
  8. #define NATITEM_H_
  9. #include "common.h"
  10. class NATItem
  11. {
  12. string ip; // IP wewn. do którego ma trafić odpowiedź / z którego przyszło żądanie
  13. int port; // port komputera wewn. do którego ma trafić odpowiedź
  14. unsigned long timeout; // czas (w sekundach) zajętości portu (0 - port wolny)
  15. public:
  16. NATItem();
  17. bool isFree();
  18. void increaseTimeout(int timeout);
  19. const string& getIp() const;
  20. void setIp(const string& ip);
  21. int getPort() const;
  22. void setPort(int port);
  23. unsigned long getTimeout() const;
  24. void setTimeout(int timeout);
  25. void free();
  26. };
  27. #endif /* NATITEM_H_ */