promiscuous.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /** @file
  2. * @brief Network interface promiscuous mode support
  3. *
  4. * An API for applications to start listening network traffic.
  5. * This requires support from network device driver and from application.
  6. */
  7. /*
  8. * Copyright (c) 2018 Intel Corporation
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. */
  12. #ifndef ZEPHYR_INCLUDE_NET_PROMISCUOUS_H_
  13. #define ZEPHYR_INCLUDE_NET_PROMISCUOUS_H_
  14. /**
  15. * @brief Promiscuous mode support.
  16. * @defgroup promiscuous Promiscuous mode
  17. * @ingroup networking
  18. * @{
  19. */
  20. #include <net/net_pkt.h>
  21. #include <net/net_if.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /**
  26. * @brief Start to wait received network packets.
  27. *
  28. * @param timeout How long to wait before returning.
  29. *
  30. * @return Received net_pkt, NULL if not received any packet.
  31. */
  32. #if defined(CONFIG_NET_PROMISCUOUS_MODE)
  33. struct net_pkt *net_promisc_mode_wait_data(k_timeout_t timeout);
  34. #else
  35. static inline struct net_pkt *net_promisc_mode_wait_data(k_timeout_t timeout)
  36. {
  37. ARG_UNUSED(timeout);
  38. return NULL;
  39. }
  40. #endif /* CONFIG_NET_PROMISCUOUS_MODE */
  41. /**
  42. * @brief Enable promiscuous mode for a given network interface.
  43. *
  44. * @param iface Network interface
  45. *
  46. * @return 0 if ok, <0 if error
  47. */
  48. #if defined(CONFIG_NET_PROMISCUOUS_MODE)
  49. int net_promisc_mode_on(struct net_if *iface);
  50. #else
  51. static inline int net_promisc_mode_on(struct net_if *iface)
  52. {
  53. ARG_UNUSED(iface);
  54. return -ENOTSUP;
  55. }
  56. #endif /* CONFIG_NET_PROMISCUOUS_MODE */
  57. /**
  58. * @brief Disable promiscuous mode for a given network interface.
  59. *
  60. * @param iface Network interface
  61. *
  62. * @return 0 if ok, <0 if error
  63. */
  64. #if defined(CONFIG_NET_PROMISCUOUS_MODE)
  65. int net_promisc_mode_off(struct net_if *iface);
  66. #else
  67. static inline int net_promisc_mode_off(struct net_if *iface)
  68. {
  69. ARG_UNUSED(iface);
  70. return -ENOTSUP;
  71. }
  72. #endif /* CONFIG_NET_PROMISCUOUS_MODE */
  73. #ifdef __cplusplus
  74. }
  75. #endif
  76. /**
  77. * @}
  78. */
  79. #endif /* ZEPHYR_INCLUDE_NET_PROMISCUOUS_H_ */