LocalDeviceList.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed LocalDeviceList (struct plc * plc, char const * space, char const * comma);
  11. *
  12. * plc.h
  13. *
  14. * print local device hardware addresses on stdout;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <cmaier@qca.qualcomm.com>
  18. * Matthieu Poullet <m.poullet@avm.de>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef LOCALDEVICELIST_SOURCE
  22. #define LOCALDEVICELIST_SOURCE
  23. #include "../tools/number.h"
  24. #include "../plc/plc.h"
  25. signed LocalDeviceList (struct plc * plc, char const * space, char const * comma)
  26. {
  27. struct channel * channel = (struct channel *) (plc->channel);
  28. struct message * message = (struct message *) (plc->message);
  29. ssize_t packetsize;
  30. #ifndef __GNUC__
  31. #pragma pack (push,1)
  32. #endif
  33. struct __packed vs_sw_ver_request
  34. {
  35. struct ethernet_hdr ethernet;
  36. struct qualcomm_hdr qualcomm;
  37. }
  38. * request = (struct vs_sw_ver_request *) (message);
  39. #ifndef __GNUC__
  40. #pragma pack (pop)
  41. #endif
  42. memset (message, 0, sizeof (* message));
  43. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  44. QualcommHeader (& request->qualcomm, 0, (VS_SW_VER | MMTYPE_REQ));
  45. if (sendpacket (channel, message, (ETHER_MIN_LEN - ETHER_CRC_LEN)) <= 0)
  46. {
  47. return (-1);
  48. }
  49. while ((packetsize = readpacket (channel, message, sizeof (* message))) > 0)
  50. {
  51. if (UnwantedMessage (message, packetsize, 0, (VS_SW_VER | MMTYPE_CNF)))
  52. {
  53. continue;
  54. }
  55. hexout (request->ethernet.OSA, sizeof (request->ethernet.OSA), HEX_EXTENDER, 0, stdout);
  56. if ((space) && (* space))
  57. {
  58. printf ("%s", space);
  59. }
  60. }
  61. if ((comma) && (* comma))
  62. {
  63. printf ("%s", comma);
  64. }
  65. return (0);
  66. }
  67. #endif