1
0

TUNInterface.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef TUNInterface_H
  16. #define TUNInterface_H
  17. #include "util/events/EventBase.h"
  18. #include "util/log/Log.h"
  19. #include "exception/Except.h"
  20. #include "memory/Allocator.h"
  21. #include "interface/Interface.h"
  22. #include "util/Linker.h"
  23. Linker_require("interface/tuntap/TUNInterface_" + builder.config.systemName + ".c")
  24. /**
  25. * This is the maximum size that will be accepted as an interface name.
  26. * If this runs on a system where IFNAMSIZ is less then this, names larger
  27. * than that will also be rejected.
  28. */
  29. #ifdef win32
  30. #define TUNInterface_IFNAMSIZ 256
  31. #else
  32. #define TUNInterface_IFNAMSIZ 16
  33. #endif
  34. /**
  35. * Create a new TUNInterface.
  36. *
  37. * @param interfaceName the interface name you *want* to use or NULL to let the kernel decide.
  38. * @param assignedInterfaceName an empty buffer which will be filled in with the interface
  39. * name that is assigned.
  40. * @param isTapMode if true, the TUN device will be initialized in TAP mode if supported.
  41. * @param base the libevent event base to use for listening for incoming packet events.
  42. * @param logger for logging messages about the tun device.
  43. * @param eh if this function fails, it will raise one an error.
  44. * @param allocator a means of getting memory.
  45. * @return a Interface.
  46. */
  47. struct Interface* TUNInterface_new(const char* interfaceName,
  48. char assignedInterfaceName[TUNInterface_IFNAMSIZ],
  49. int isTapMode,
  50. struct EventBase* base,
  51. struct Log* logger,
  52. struct Except* eh,
  53. struct Allocator* alloc);
  54. #endif