TUNInterface.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 "util/Linker.h"
  22. Linker_require("interface/tuntap/TUNInterface_" + builder.config.systemName + ".c")
  23. /**
  24. * This is the maximum size that will be accepted as an interface name.
  25. * If this runs on a system where IFNAMSIZ is less then this, names larger
  26. * than that will also be rejected.
  27. */
  28. #ifdef win32
  29. #define TUNInterface_IFNAMSIZ 256
  30. #else
  31. #define TUNInterface_IFNAMSIZ 16
  32. #endif
  33. /**
  34. * Create a new TUNInterface.
  35. *
  36. * @param interfaceName the interface name you *want* to use or NULL to let the kernel decide.
  37. * @param assignedInterfaceName an empty buffer which will be filled in with the interface
  38. * name that is assigned.
  39. * @param isTapMode if true, the TUN device will be initialized in TAP mode if supported.
  40. * @param base the libevent event base to use for listening for incoming packet events.
  41. * @param logger for logging messages about the tun device.
  42. * @param eh if this function fails, it will raise one an error.
  43. * @param allocator a means of getting memory.
  44. * @return a Interface.
  45. */
  46. struct Iface* TUNInterface_new(const char* interfaceName,
  47. char assignedInterfaceName[TUNInterface_IFNAMSIZ],
  48. int isTapMode,
  49. struct EventBase* base,
  50. struct Log* logger,
  51. struct Except* eh,
  52. struct Allocator* alloc);
  53. #endif