Add missing socket options.

This commit is contained in:
Pawel Jakub Dawidek 2009-05-26 09:19:21 +00:00
parent 0970b4bae0
commit ce332f1e67
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=192802

View File

@ -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