Transmit.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Transmit (struct plc * plc, byte source [], byte target []) ;
  11. *
  12. * send TCP/IP frames to a remote powerline device to establish
  13. * the source device TX PHY rate and remote device RX PHY rate;
  14. *
  15. *--------------------------------------------------------------------*/
  16. #ifndef TRANSMIT_SOURCE
  17. #define TRANSMIT_SOURCE
  18. #include <sys/time.h>
  19. #include <memory.h>
  20. #include <errno.h>
  21. #include "../tools/error.h"
  22. #include "../tools/flags.h"
  23. #include "../tools/types.h"
  24. #include "../tools/timer.h"
  25. #include "../plc/plc.h"
  26. signed Transmit (struct plc * plc, byte source [], byte target [])
  27. {
  28. struct channel * channel = (struct channel *) (plc->channel);
  29. struct message * message = (struct message *) (plc->message);
  30. struct timeval ts;
  31. struct timeval tc;
  32. unsigned timer = 0;
  33. if (_allclr (plc->flags, PLC_SILENCE))
  34. {
  35. char sourcename [ETHER_ADDR_LEN * 3];
  36. char targetname [ETHER_ADDR_LEN * 3];
  37. hexdecode (source, ETHER_ADDR_LEN, sourcename, sizeof (sourcename));
  38. hexdecode (target, ETHER_ADDR_LEN, targetname, sizeof (targetname));
  39. fprintf (stderr, "%s %s %s\n", channel->ifname, sourcename, targetname);
  40. }
  41. memset (message, 0xA5, sizeof (* message));
  42. EthernetHeader (message, target, source, ETHERTYPE_IP);
  43. if (gettimeofday (& ts, NULL) == -1)
  44. {
  45. error (1, errno, CANT_START_TIMER);
  46. }
  47. for (timer = 0; timer < plc->timer; timer = SECONDS (ts, tc))
  48. {
  49. if (sendpacket (channel, message, sizeof (* message)) <= 0)
  50. {
  51. error (1, ECANCELED, CHANNEL_CANTSEND);
  52. }
  53. if (gettimeofday (& tc, NULL) == -1)
  54. {
  55. error (1, errno, CANT_RESET_TIMER);
  56. }
  57. }
  58. return (0);
  59. }
  60. #endif