mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add missing socket options.
This commit is contained in:
parent
0970b4bae0
commit
ce332f1e67
1 changed files with 8 additions and 0 deletions
|
|
@ -136,6 +136,14 @@ db_print_sooptions(short so_options)
|
|||
db_printf("%sSO_BINTIME", comma ? ", " : "");
|
||||
comma = 1;
|
||||
}
|
||||
if (so_options & SO_NO_OFFLOAD) {
|
||||
db_printf("%sSO_NO_OFFLOAD", comma ? ", " : "");
|
||||
comma = 1;
|
||||
}
|
||||
if (so_options & SO_NO_DDP) {
|
||||
db_printf("%sSO_NO_DDP", comma ? ", " : "");
|
||||
comma = 1;
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue