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.

33 lines
658 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. const string& getIp() const;
  19. void setIp(const string& ip);
  20. int getPort() const;
  21. void setPort(int port);
  22. unsigned long getTimeout() const;
  23. void setTimeout(int timeout);
  24. void free();
  25. };
  26. #endif /* NATITEM_H_ */