HostActionResponse.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * int HostActionResponse (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * respond to a VS_HOST_ACTION.IND message sent from a device to
  15. * the local host using a VS_HOST_ACTION.RSP message; this tells
  16. * the bootloader to stop sending VS_HOST_ACTION.IND messages;
  17. *
  18. * Contributor(s):
  19. * Charles Maier <cmaier@qca.qualcomm.com>
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef HOSTACTIONRESPONSE_SOURCE
  23. #define HOSTACTIONRESPONSE_SOURCE
  24. #include <stdint.h>
  25. #include <memory.h>
  26. #include "../plc/plc.h"
  27. #include "../tools/error.h"
  28. #include "../tools/memory.h"
  29. signed HostActionResponse (struct plc * plc)
  30. {
  31. struct channel * channel = (struct channel *) (plc->channel);
  32. struct message * message = (struct message *) (plc->message);
  33. #ifndef __GNUC__
  34. #pragma pack (push,1)
  35. #endif
  36. struct __packed vs_host_action_rsp
  37. {
  38. struct ethernet_hdr ethernet;
  39. struct qualcomm_hdr qualcomm;
  40. uint8_t MSTATUS;
  41. }
  42. * response = (struct vs_host_action_rsp *) (message);
  43. #ifndef __GNUC__
  44. #pragma pack (pop)
  45. #endif
  46. memset (message, 0, sizeof (* message));
  47. EthernetHeader (& response->ethernet, channel->peer, channel->host, channel->type);
  48. QualcommHeader (& response->qualcomm, 0, (VS_HOST_ACTION | MMTYPE_RSP));
  49. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  50. if (SendMME (plc) <= 0)
  51. {
  52. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  53. return (-1);
  54. }
  55. return (0);
  56. }
  57. #endif