EthernetHeader.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed EthernetHeader (void * memory, const uint8_t peer [], const uint8_t host [], uint16_t protocol);
  11. *
  12. * mme.h
  13. *
  14. * encode a memory region with a standard Ethernet frame header in
  15. * network byte order;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef ETHERNETHEADER_SOURCE
  22. #define ETHERNETHEADER_SOURCE
  23. #include <stdint.h>
  24. #include <memory.h>
  25. #include "../mme/mme.h"
  26. signed EthernetHeader (void * memory, const uint8_t peer [], const uint8_t host [], uint16_t protocol)
  27. {
  28. struct ether_header * header = (struct ether_header *) (memory);
  29. memcpy (header->ether_dhost, peer, sizeof (header->ether_dhost));
  30. memcpy (header->ether_shost, host, sizeof (header->ether_shost));
  31. header->ether_type = htons (protocol);
  32. return (sizeof (* header));
  33. }
  34. #endif