gsmmux.h 501 B

12345678910111213141516171819202122232425
  1. #ifndef _LINUX_GSMMUX_H
  2. #define _LINUX_GSMMUX_H
  3. struct gsm_config
  4. {
  5. unsigned int adaption;
  6. unsigned int encapsulation;
  7. unsigned int initiator;
  8. unsigned int t1;
  9. unsigned int t2;
  10. unsigned int t3;
  11. unsigned int n2;
  12. unsigned int mru;
  13. unsigned int mtu;
  14. unsigned int k;
  15. unsigned int i;
  16. unsigned int unused[8]; /* Padding for expansion without
  17. breaking stuff */
  18. };
  19. #define GSMIOC_GETCONF _IOR('G', 0, struct gsm_config)
  20. #define GSMIOC_SETCONF _IOW('G', 1, struct gsm_config)
  21. #endif