Request.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 Request (struct plc * plc, char const * format, ...);
  11. *
  12. * plc.h
  13. *
  14. * Inform the user that an operation has started; print the channel
  15. * name, template destination address and user message on stdout
  16. * unless the PLC_SILENCE flag is set;
  17. *
  18. * This function is identical to Confirm () except that it prints
  19. * the template destination address instead of the packet source
  20. * address because it is called before outgoing frames are encoded;
  21. *
  22. * Contributor(s):
  23. * Charles Maier <cmaier@qca.qualcomm.com>
  24. *
  25. *--------------------------------------------------------------------*/
  26. #ifndef REQUEST_SOURCE
  27. #define REQUEST_SOURCE
  28. #include <stdio.h>
  29. #include <stdarg.h>
  30. #include "../plc/plc.h"
  31. #include "../tools/memory.h"
  32. #include "../tools/flags.h"
  33. #ifdef __GNUC__
  34. __attribute__ ((format (printf, 2, 3)))
  35. #endif
  36. void Request (struct plc * plc, char const * format, ...)
  37. {
  38. if (_allclr (plc->flags, PLC_SILENCE))
  39. {
  40. char address [ETHER_ADDR_LEN * 3];
  41. struct channel * channel = (struct channel *) (plc->channel);
  42. hexdecode (channel->peer, sizeof (channel->peer), 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