NetPlatform.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 NetPlatform_H
  16. #define NetPlatform_H
  17. #include "memory/Allocator.h"
  18. #include "exception/Except.h"
  19. #include "util/log/Log.h"
  20. #include "util/platform/Sockaddr.h"
  21. #include "util/Linker.h"
  22. Linker_require("util/platform/netdev/NetPlatform_" + builder.config.systemName + ".c");
  23. #include <stdint.h>
  24. void NetPlatform_flushAddresses(const char* deviceName, struct Except* eh);
  25. void NetPlatform_addAddress(const char* interfaceName,
  26. const uint8_t* address,
  27. int prefixLen,
  28. int addrFam,
  29. struct Log* logger,
  30. struct Allocator* tempAlloc,
  31. struct Except* eh);
  32. void NetPlatform_setMTU(const char* interfaceName,
  33. uint32_t mtu,
  34. struct Log* logger,
  35. struct Except* eh);
  36. void NetPlatform_setRoutes(const char* ifName,
  37. struct Sockaddr** prefixSet,
  38. int prefixCount,
  39. struct Log* logger,
  40. struct Allocator* tempAlloc,
  41. struct Except* eh);
  42. #endif