diff options
author | 2016-01-15 11:21:58 +0000 | |
---|---|---|
committer | 2016-01-15 11:21:58 +0000 | |
commit | ce5376a699dd0157d0baf4fdcdb725a6daf30154 (patch) | |
tree | c4fe6f6e5c2db0412534c431ab5b67c22ebdd4cb /sys/ddb/db_interface.h | |
parent | Add support for parsing 'hyper' and 'quad' types, as per RFC4506. (diff) | |
download | wireguard-openbsd-ce5376a699dd0157d0baf4fdcdb725a6daf30154.tar.xz wireguard-openbsd-ce5376a699dd0157d0baf4fdcdb725a6daf30154.zip |
add a "show socket" command to ddb
should help inspecting socket issues in the future.
enthusiasm from mpi@ bluhm@ deraadt@
Diffstat (limited to 'sys/ddb/db_interface.h')
-rw-r--r-- | sys/ddb/db_interface.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/ddb/db_interface.h b/sys/ddb/db_interface.h index bcd4956975b..77602d2cc98 100644 --- a/sys/ddb/db_interface.h +++ b/sys/ddb/db_interface.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_interface.h,v 1.16 2010/11/05 15:17:50 claudio Exp $ */ +/* $OpenBSD: db_interface.h,v 1.17 2016/01/15 11:21:58 dlg Exp $ */ /* $NetBSD: db_interface.h,v 1.1 1996/02/05 01:57:03 christos Exp $ */ /* @@ -58,6 +58,9 @@ void db_show_all_pools(db_expr_t, int, db_expr_t, char *); /* kern/uipc_mbuf.c */ void m_print(void *, int (*)(const char *, ...)); +/* kern/uipc_socket.c */ +void so_print(void *, int (*)(const char *, ...)); + /* nfs/nfs_debug.c */ void db_show_all_nfsreqs(db_expr_t, int, db_expr_t, char *); void nfs_request_print(void *, int, int (*)(const char *, ...)); |