mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Unbreak no-INET kernels after r223839 adding the needed #ifdef INET.
MFC after: 4 weeks
This commit is contained in:
parent
861a327be9
commit
dceced71fb
1 changed files with 2 additions and 0 deletions
|
|
@ -337,7 +337,9 @@ tcp_init(void)
|
|||
|
||||
TUNABLE_INT_FETCH("net.inet.tcp.soreceive_stream", &tcp_soreceive_stream);
|
||||
if (tcp_soreceive_stream) {
|
||||
#ifdef INET
|
||||
tcp_usrreqs.pru_soreceive = soreceive_stream;
|
||||
#endif
|
||||
#ifdef INET6
|
||||
tcp6_usrreqs.pru_soreceive = soreceive_stream;
|
||||
#endif /* INET6 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue