NetworkDevices.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed NetworkDevices (struct plc * plc, void * memory, size_t extent);
  11. *
  12. * plc.h
  13. *
  14. * return a list powerline network device addresses on a powerline
  15. * network; the list consists of a known device plus all others on
  16. * the same powerline network; the device is defined by the channel
  17. * peer address and appears first in the list;
  18. *
  19. * the device address must be explicit; it cannot be the broadcast
  20. * or localcast address;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef NETWORKDEVICES_SOURCE
  27. #define NETWORKDEVICES_SOURCE
  28. #include "../plc/plc.h"
  29. signed NetworkDevices (struct plc * plc, void * memory, size_t extent)
  30. {
  31. return ((plc->hardwareID < CHIPSET_AR7400)? NetworkDevices1 (plc, memory, extent): NetworkDevices2 (plc, memory, extent));
  32. }
  33. #endif