Confirm.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * void Confirm (struct plc * plc, char const * message);
  11. *
  12. * plc.h
  13. *
  14. * Inform the user that an operation has completed; print the channel
  15. * name, frame source address and user message on stdout unless the
  16. * PLC_SILENCE flag is set;
  17. *
  18. * this function is identical to Request () except that it prints the
  19. * packet source address instead of the template destination address;
  20. *
  21. * Contributor(s):
  22. * Charles Maier <cmaier@qca.qualcomm.com>
  23. *
  24. *--------------------------------------------------------------------*/
  25. #ifndef CONFIRM_SOURCE
  26. #define CONFIRM_SOURCE
  27. #include <stdio.h>
  28. #include <stdarg.h>
  29. #include "../plc/plc.h"
  30. #include "../tools/memory.h"
  31. #include "../tools/flags.h"
  32. #ifdef __GNUC__
  33. __attribute__ ((format (printf, 2, 3)))
  34. #endif
  35. void Confirm (struct plc * plc, char const * format, ...)
  36. {
  37. if (_allclr (plc->flags, PLC_SILENCE))
  38. {
  39. char address [ETHER_ADDR_LEN * 3];
  40. struct channel * channel = (struct channel *) (plc->channel);
  41. struct message * message = (struct message *) (plc->message);
  42. hexdecode (message->ethernet.OSA, sizeof (message->ethernet.OSA), address, sizeof (address));
  43. fprintf (stderr, "%s %s ", channel->ifname, address);
  44. if ((format) && (* format))
  45. {
  46. va_list arglist;
  47. va_start (arglist, format);
  48. vfprintf (stderr, format, arglist);
  49. va_end (arglist);
  50. }
  51. fprintf (stderr, "\n");
  52. }
  53. return;
  54. }
  55. #endif