From ce332f1e6732c01db77bf627718722fcc00a7316 Mon Sep 17 00:00:00 2001 From: Pawel Jakub Dawidek Date: Tue, 26 May 2009 09:19:21 +0000 Subject: Add missing socket options. --- sys/kern/uipc_debug.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sys/kern/uipc_debug.c b/sys/kern/uipc_debug.c index 292f6e1fd981..57f4017b4f34 100644 --- a/sys/kern/uipc_debug.c +++ b/sys/kern/uipc_debug.c @@ -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 -- cgit v1.2.3