ipcomp.h 212 B

1234567891011121314
  1. #ifndef _NET_IPCOMP_H
  2. #define _NET_IPCOMP_H
  3. #include <linux/crypto.h>
  4. #include <linux/types.h>
  5. #define IPCOMP_SCRATCH_SIZE 65400
  6. struct ipcomp_data {
  7. u16 threshold;
  8. struct crypto_comp **tfms;
  9. };
  10. #endif