dummy.h 930 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_NET_DUMMY_H_
  7. #define ZEPHYR_INCLUDE_NET_DUMMY_H_
  8. #include <net/net_if.h>
  9. #include <net/net_pkt.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * @brief Dummy L2/driver support functions
  15. * @defgroup dummy Dummy L2/driver Support Functions
  16. * @ingroup networking
  17. * @{
  18. */
  19. struct dummy_api {
  20. /**
  21. * The net_if_api must be placed in first position in this
  22. * struct so that we are compatible with network interface API.
  23. */
  24. struct net_if_api iface_api;
  25. /** Send a network packet */
  26. int (*send)(const struct device *dev, struct net_pkt *pkt);
  27. };
  28. /* Make sure that the network interface API is properly setup inside
  29. * dummy API struct (it is the first one).
  30. */
  31. BUILD_ASSERT(offsetof(struct dummy_api, iface_api) == 0);
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. /**
  36. * @}
  37. */
  38. #endif /* ZEPHYR_INCLUDE_NET_DUMMY_H_ */