Traffic.c 977 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Traffic (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * generate bi-directional traffic between a local device and all
  15. * remote devices on a powerline network; remote devices need not
  16. * be connected; no traffic is generated between remote devices;
  17. *
  18. * this function is similar to NetworkTraffic but takes less time
  19. * since not all powerline paths are exercised and those that are
  20. * can be exercised in parallel;
  21. *
  22. *--------------------------------------------------------------------*/
  23. #ifndef TRAFFIC_SOURCE
  24. #define TRAFFIC_SOURCE
  25. #include "../plc/plc.h"
  26. signed Traffic (struct plc * plc)
  27. {
  28. return (PLCSelect (plc, Traffic1, Traffic2));
  29. }
  30. #endif