/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <mdb/mdb_modapi.h>
/*
* PROT_LENGTH is the max length. If the true length is bigger
* it is truncated.
*/
/*
* List pfhooks netinfo information.
*/
/*ARGSUSED*/
int
{
if (argc)
return (DCMD_USAGE);
mdb_warn("couldn't read netstack_neti");
return (DCMD_ERR);
}
mdb_warn("couldn't read netd list head");
return (DCMD_ERR);
}
mdb_printf("%<u>%?s %?s %10s%</u>\n",
"ADDR(netinfo)", "ADDR(hookevent)", "netinfo");
p = LIST_FIRST(&nlh);
while (p) {
mdb_warn("couldn't read netinfo at %p", p);
return (DCMD_ERR);
}
mdb_warn("netinfo at %p has null protocol",
return (DCMD_ERR);
}
mdb_warn("couldn't read protocol at %p",
return (DCMD_ERR);
}
mdb_printf("%0?p %0?p %10s\n",
}
return (DCMD_OK);
}
{ "netinfolist", "", "display netinfo information",
netinfolist, NULL },
{ NULL }
};
const mdb_modinfo_t *
_mdb_init(void)
{
return (&modinfo);
}