Display.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void Display (struct plc * plc, char const * message);
  11. *
  12. * plc.h
  13. *
  14. * Inform the user that an operation suceeded; print channel name,
  15. * packet source device and user defined message on stdout;
  16. *
  17. * This function is identical to Confirm () except that a message
  18. * is always printed on stdout and cannot be suppressed;
  19. *
  20. * Contributor(s):
  21. * Charles Maier <cmaier@qca.qualcomm.com>
  22. *
  23. *--------------------------------------------------------------------*/
  24. #ifndef DISPLAY_SOURCE
  25. #define DISPLAY_SOURCE
  26. #include <stdio.h>
  27. #include <stdarg.h>
  28. #include "../plc/plc.h"
  29. #include "../tools/memory.h"
  30. #ifdef __GNUC__
  31. __attribute__ ((format (printf, 2, 3)))
  32. #endif
  33. void Display (struct plc * plc, char const * format, ...)
  34. {
  35. char address [ETHER_ADDR_LEN * 3];
  36. struct channel * channel = (struct channel *) (plc->channel);
  37. struct message * message = (struct message *) (plc->message);
  38. hexdecode (message->ethernet.OSA, sizeof (message->ethernet.OSA), address, sizeof (address));
  39. printf ("%s %s ", channel->ifname, address);
  40. if ((format) && (* format))
  41. {
  42. va_list arglist;
  43. va_start (arglist, format);
  44. vprintf (format, arglist);
  45. va_end (arglist);
  46. }
  47. printf ("\n");
  48. return;
  49. }
  50. #endif