Home
last modified time | relevance | path

Searched refs:nstat_control (Results 1 – 1 of 1) sorted by relevance

/xnu-8796.141.3/bsd/net/
H A Dntstat.c5361 struct kern_ctl_reg nstat_control; in nstat_control_register() local
5362 bzero(&nstat_control, sizeof(nstat_control)); in nstat_control_register()
5363 strlcpy(nstat_control.ctl_name, NET_STAT_CONTROL_NAME, sizeof(nstat_control.ctl_name)); in nstat_control_register()
5364 nstat_control.ctl_flags = CTL_FLAG_REG_EXTENDED | CTL_FLAG_REG_CRIT; in nstat_control_register()
5365 nstat_control.ctl_sendsize = nstat_sendspace; in nstat_control_register()
5366 nstat_control.ctl_recvsize = nstat_recvspace; in nstat_control_register()
5367 nstat_control.ctl_connect = nstat_control_connect; in nstat_control_register()
5368 nstat_control.ctl_disconnect = nstat_control_disconnect; in nstat_control_register()
5369 nstat_control.ctl_send = nstat_control_send; in nstat_control_register()
5371 ctl_register(&nstat_control, &nstat_ctlref); in nstat_control_register()