coqos.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. #ifndef COQOS_HEADER
  9. #define COQOS_HEADER
  10. /*====================================================================*
  11. * custom header files;
  12. *--------------------------------------------------------------------*/
  13. #include "../plc/rules.h"
  14. /*====================================================================*
  15. * network classification rule structure;
  16. *--------------------------------------------------------------------*/
  17. #ifndef __GNUC__
  18. #pragma pack (push,1)
  19. #endif
  20. struct __packed connection
  21. {
  22. uint32_t REQ_ID;
  23. uint32_t RSVD;
  24. uint8_t APP_DA [6];
  25. uint8_t RSVD2;
  26. struct __packed
  27. {
  28. uint8_t MOPERAND;
  29. uint8_t NUM_CLASSIFIERS;
  30. struct MMEClassifier CLASSIFIERS [RULE_MAX_CLASSIFIERS];
  31. }
  32. rule;
  33. struct __packed
  34. {
  35. uint16_t CSPEC_VERSION;
  36. uint8_t CONN_CAP;
  37. uint8_t CONN_COQOS_PRIO;
  38. uint16_t CONN_RATE;
  39. uint32_t CONN_TTL;
  40. }
  41. cspec;
  42. };
  43. struct __packed conn_info
  44. {
  45. uint8_t SNID;
  46. uint16_t CID;
  47. uint8_t STEI;
  48. uint8_t DTEI;
  49. uint8_t LLID;
  50. uint8_t RSVD;
  51. uint16_t CSPECVERSION;
  52. uint8_t CONN_CAP;
  53. uint8_t CONN_COQOS_PRIO;
  54. uint16_t CONN_RATE;
  55. uint32_t CONN_TTL;
  56. uint16_t BW_USED;
  57. };
  58. #ifndef __GNUC__
  59. #pragma pack (pop)
  60. #endif
  61. /*====================================================================*
  62. *
  63. *--------------------------------------------------------------------*/
  64. #endif