SetProperty.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed SetProperty (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. *--------------------------------------------------------------------*/
  15. #ifndef SETPROPERTY_SOURCE
  16. #define SETPROPERTY_SOURCE
  17. #include <stdint.h>
  18. #include <memory.h>
  19. #include "../plc/plc.h"
  20. #include "../tools/error.h"
  21. #include "../tools/memory.h"
  22. signed SetProperty (struct plc * plc, struct plcproperty * plcproperty)
  23. {
  24. struct channel * channel = (struct channel *) (plc->channel);
  25. struct message * message = (struct message *) (plc->message);
  26. #ifndef __GNUC__
  27. #pragma pack (push,1)
  28. #endif
  29. struct __packed vs_set_property_request
  30. {
  31. struct ethernet_hdr ethernet;
  32. struct qualcomm_hdr qualcomm;
  33. uint32_t COOKIE;
  34. uint8_t OPTION;
  35. uint8_t RESERVED [3];
  36. uint32_t PROP_VERSION;
  37. uint32_t PROP_NUMBER;
  38. uint32_t DATA_LENGTH;
  39. uint8_t DATA_BUFFER [256];
  40. }
  41. * request = (struct vs_set_property_request *) (message);
  42. struct __packed vs_set_property_confirm
  43. {
  44. struct ethernet_hdr ethernet;
  45. struct qualcomm_hdr qualcomm;
  46. uint32_t MSTATUS;
  47. uint32_t COOKIE;
  48. }
  49. * confirm = (struct vs_set_property_confirm *) (message);
  50. #ifndef __GNUC__
  51. #pragma pack (pop)
  52. #endif
  53. Request (plc, "Set Property");
  54. memset (message, 0, sizeof (* message));
  55. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  56. QualcommHeader (& request->qualcomm, 0, (VS_SET_PROPERTY | MMTYPE_REQ));
  57. request->COOKIE = HTOLE32 (plc->cookie);
  58. request->OPTION = plcproperty->PROP_OPTION;
  59. request->PROP_VERSION = HTOLE32 (plcproperty->PROP_VERSION);
  60. request->PROP_NUMBER = HTOLE32 (plcproperty->PROP_NUMBER);
  61. request->DATA_LENGTH = HTOLE32 (plcproperty->DATA_LENGTH);
  62. memcpy (& request->DATA_BUFFER, & plcproperty->DATA_BUFFER, plcproperty->DATA_LENGTH);
  63. plc->packetsize = sizeof (* request);
  64. if (SendMME (plc) <= 0)
  65. {
  66. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  67. return (-1);
  68. }
  69. while (ReadMME (plc, 0, (VS_SET_PROPERTY | MMTYPE_CNF)) > 0)
  70. {
  71. if (confirm->MSTATUS)
  72. {
  73. Failure (plc, PLC_WONTDOIT);
  74. continue;
  75. }
  76. }
  77. return (0);
  78. }
  79. #endif