diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-10-29 05:22:03 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 1999-10-29 05:22:03 +0000 |
commit | 6726d96aa8c7d3a306b0cd5741866b7d018cc989 (patch) | |
tree | c95f73db45300cdec7f7bf3d5e403d1daefa43fa /sys | |
parent | 1e8f0d5741ba62b4b7aaabea82c95e61190397db (diff) |
enc_softc definition
Diffstat (limited to 'sys')
-rw-r--r-- | sys/net/if_enc.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/net/if_enc.h b/sys/net/if_enc.h index eb7c340238b..bfae0a16fb4 100644 --- a/sys/net/if_enc.h +++ b/sys/net/if_enc.h @@ -37,6 +37,13 @@ #define ENCMTU (1024+512) #define ENC_HDRLEN 12 +struct enc_softc { + struct ifnet sc_if; /* the interface */ + union sockaddr_union sc_dst; + u_int32_t sc_spi; + u_int32_t sc_sproto; +}; + struct enchdr { u_int32_t af; u_int32_t spi; |