SendMME.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed SendMME (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * send management message over Ethernet in a platform independent
  15. * fashion; return the number of bytes sent on succes, 0 on timeout
  16. * or -1 on error;
  17. *
  18. * see ReadMME for the vendor specific read counterpart to this
  19. * function;
  20. *
  21. * see ReadMFG for the manufacturer specific read counterpart to
  22. * this function;
  23. *
  24. * Contributor(s):
  25. * Charles Maier <cmaier@qca.qualcomm.com>
  26. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  27. *
  28. *--------------------------------------------------------------------*/
  29. #ifndef SENDMME_SOURCE
  30. #define SENDMME_SOURCE
  31. #include <stdint.h>
  32. #include "../plc/plc.h"
  33. signed SendMME (struct plc * plc)
  34. {
  35. struct channel * channel = (struct channel *) (plc->channel);
  36. struct message * message = (struct message *) (plc->message);
  37. signed length = sendpacket (channel, message, plc->packetsize);
  38. return (length);
  39. }
  40. signed SendMME1 (struct plc * plc)
  41. {
  42. struct channel * channel1 = (struct channel *) (plc->channel1);
  43. struct message * message = (struct message *) (plc->message);
  44. signed length = sendpacket (channel1, message, plc->packetsize);
  45. return (length);
  46. }
  47. #endif