| /freebsd-12-stable/sys/netinet/ |
| D | sctp_cc_functions.c | 58 sctp_enforce_cwnd_limit(struct sctp_association *assoc, struct sctp_nets *net) in sctp_enforce_cwnd_limit() argument 61 (net->cwnd > assoc->max_cwnd) && in sctp_enforce_cwnd_limit() 62 (net->cwnd > (net->mtu - sizeof(struct sctphdr)))) { in sctp_enforce_cwnd_limit() 63 net->cwnd = assoc->max_cwnd; in sctp_enforce_cwnd_limit() 64 if (net->cwnd < (net->mtu - sizeof(struct sctphdr))) { in sctp_enforce_cwnd_limit() 65 net->cwnd = net->mtu - sizeof(struct sctphdr); in sctp_enforce_cwnd_limit() 71 sctp_set_initial_cc_param(struct sctp_tcb *stcb, struct sctp_nets *net) in sctp_set_initial_cc_param() argument 80 net->cwnd = min((net->mtu * 4), max((2 * net->mtu), SCTP_INITIAL_CWND)); in sctp_set_initial_cc_param() 88 net->cwnd = (net->mtu - sizeof(struct sctphdr)) * cwnd_in_mtu; in sctp_set_initial_cc_param() 93 net->cwnd /= assoc->numnets; in sctp_set_initial_cc_param() [all …]
|
| D | sctp_timer.c | 91 struct sctp_nets *net, uint16_t threshold) in sctp_threshold_management() argument 93 if (net) { in sctp_threshold_management() 94 net->error_count++; in sctp_threshold_management() 96 (void *)net, net->error_count, in sctp_threshold_management() 97 net->failure_threshold); in sctp_threshold_management() 98 if (net->error_count > net->failure_threshold) { in sctp_threshold_management() 100 if (net->dest_state & SCTP_ADDR_REACHABLE) { in sctp_threshold_management() 101 net->dest_state &= ~SCTP_ADDR_REACHABLE; in sctp_threshold_management() 102 net->dest_state &= ~SCTP_ADDR_REQ_PRIMARY; in sctp_threshold_management() 103 net->dest_state &= ~SCTP_ADDR_PF; in sctp_threshold_management() [all …]
|
| D | sctp_kdtrace.c | 47 SDT_PROBE_DEFINE5(sctp, cwnd, net, init, 58 SDT_PROBE_DEFINE5(sctp, cwnd, net, ack, 69 SDT_PROBE_DEFINE5(sctp, cwnd, net, rttvar, 77 SDT_PROBE_DEFINE5(sctp, cwnd, net, rttstep, 86 SDT_PROBE_DEFINE5(sctp, cwnd, net, fr, 97 SDT_PROBE_DEFINE5(sctp, cwnd, net, to, 108 SDT_PROBE_DEFINE5(sctp, cwnd, net, bl, 119 SDT_PROBE_DEFINE5(sctp, cwnd, net, ecn, 130 SDT_PROBE_DEFINE5(sctp, cwnd, net, pd, 154 SDT_PROBE_DEFINE5(sctp, flightsize, net, val,
|
| D | sctp_kdtrace.h | 63 SDT_PROBE_DECLARE(sctp, cwnd, net, init); 65 SDT_PROBE_DECLARE(sctp, cwnd, net, ack); 67 SDT_PROBE_DECLARE(sctp, cwnd, net, fr); 69 SDT_PROBE_DECLARE(sctp, cwnd, net, to); 71 SDT_PROBE_DECLARE(sctp, cwnd, net, bl); 73 SDT_PROBE_DECLARE(sctp, cwnd, net, ecn); 75 SDT_PROBE_DECLARE(sctp, cwnd, net, pd); 77 SDT_PROBE_DECLARE(sctp, cwnd, net, rttvar); 78 SDT_PROBE_DECLARE(sctp, cwnd, net, rttstep); 82 SDT_PROBE_DECLARE(sctp, flightsize, net, val);
|
| D | sctp_output.c | 2957 struct sctp_nets *net, in sctp_choose_boundall() argument 3005 if (net) { in sctp_choose_boundall() 3006 cur_addr_num = net->indx_of_eligible_next_to_use; in sctp_choose_boundall() 3042 if (net) { in sctp_choose_boundall() 3044 net->indx_of_eligible_next_to_use = cur_addr_num + 1; in sctp_choose_boundall() 3093 if (net) { in sctp_choose_boundall() 3094 net->indx_of_eligible_next_to_use = cur_addr_num + 1; in sctp_choose_boundall() 3100 SCTPDBG_ADDR(SCTP_DEBUG_OUTPUT2, &net->ro._l_addr.sa); in sctp_choose_boundall() 3312 struct sctp_nets *net, in sctp_source_address_selection() argument 3406 if (net != NULL) { in sctp_source_address_selection() [all …]
|
| D | sctputil.c | 122 rto_logging(struct sctp_nets *net, int from) in rto_logging() argument 128 sctp_clog.x.rto.net = (void *)net; in rto_logging() 129 sctp_clog.x.rto.rtt = net->rtt / 1000; in rto_logging() 315 sctp_log_cwnd(struct sctp_tcb *stcb, struct sctp_nets *net, int augment, uint8_t from) in sctp_log_cwnd() argument 320 sctp_clog.x.cwnd.net = net; in sctp_log_cwnd() 330 if (net) { in sctp_log_cwnd() 331 sctp_clog.x.cwnd.cwnd_new_value = net->cwnd; in sctp_log_cwnd() 332 sctp_clog.x.cwnd.inflight = net->flight_size; in sctp_log_cwnd() 333 sctp_clog.x.cwnd.pseudo_cumack = net->pseudo_cumack; in sctp_log_cwnd() 334 sctp_clog.x.cwnd.meets_pseudo_cumack = net->new_pseudo_cumack; in sctp_log_cwnd() [all …]
|
| D | sctp_usrreq.c | 159 struct sctp_nets *net, in sctp_notify() argument 181 if (net->dest_state & SCTP_ADDR_REACHABLE) { in sctp_notify() 183 net->dest_state &= ~SCTP_ADDR_REACHABLE; in sctp_notify() 184 net->dest_state &= ~SCTP_ADDR_PF; in sctp_notify() 187 (void *)net, SCTP_SO_NOT_LOCKED); in sctp_notify() 198 if (net->dest_state & SCTP_ADDR_NO_PMTUD) { in sctp_notify() 212 if (SCTP_OS_TIMER_PENDING(&net->pmtu_timer.timer)) { in sctp_notify() 214 sctp_timer_stop(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net, in sctp_notify() 220 if (net->port) { in sctp_notify() 223 if (net->mtu > next_mtu) { in sctp_notify() [all …]
|
| D | sctp_pcb.c | 1029 struct sctp_nets *net; in sctp_tcb_special_locate() local 1202 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { in sctp_tcb_special_locate() 1204 if (net->ro._l_addr.sa.sa_family != from->sa_family) { in sctp_tcb_special_locate() 1214 sin = (struct sockaddr_in *)&net->ro._l_addr; in sctp_tcb_special_locate() 1220 *netp = net; in sctp_tcb_special_locate() 1238 sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; in sctp_tcb_special_locate() 1244 *netp = net; in sctp_tcb_special_locate() 1285 struct sctp_nets *net; in sctp_findassociation_ep_addr() local 1362 TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { in sctp_findassociation_ep_addr() 1364 if (net == (TAILQ_NEXT(net, sctp_next))) { in sctp_findassociation_ep_addr() [all …]
|
| /freebsd-12-stable/libexec/rc/rc.d/ |
| D | netoptions | 44 ${SYSCTL} net.inet.tcp.log_in_vain=${log_in_vain} >/dev/null 45 ${SYSCTL} net.inet.udp.log_in_vain=${log_in_vain} >/dev/null 48 ${SYSCTL} net.inet.tcp.log_in_vain=0 >/dev/null 49 ${SYSCTL} net.inet.udp.log_in_vain=0 >/dev/null 54 ${SYSCTL} net.inet.tcp.rfc1323=1 >/dev/null 58 ${SYSCTL} net.inet.tcp.rfc1323=0 >/dev/null 62 ${SYSCTL} net.inet.tcp.always_keepalive=1 >/dev/null 66 ${SYSCTL} net.inet.tcp.always_keepalive=0 >/dev/null 72 ${SYSCTL} net.inet.tcp.drop_synfin=1 >/dev/null 74 ${SYSCTL} net.inet.tcp.drop_synfin=0 >/dev/null [all …]
|
| D | routing | 133 _fibs=$((`${SYSCTL_N} net.fibs` - 1)) 284 ${SYSCTL} net.inet6.ip6.use_defaultzone=1 > /dev/null 301 ${SYSCTL} net.inet.icmp.bmcastecho=1 > /dev/null 303 ${SYSCTL} net.inet.icmp.bmcastecho=0 > /dev/null 309 ${SYSCTL} net.inet.icmp.drop_redirect=1 > /dev/null 311 ${SYSCTL} net.inet.icmp.drop_redirect=0 > /dev/null 317 ${SYSCTL} net.inet.icmp.log_redirect=1 > /dev/null 319 ${SYSCTL} net.inet.icmp.log_redirect=0 > /dev/null 325 ${SYSCTL} net.inet.ip.forwarding=1 > /dev/null 327 ${SYSCTL} net.inet.ip.forwarding=0 > /dev/null [all …]
|
| /freebsd-12-stable/contrib/bmake/mk/ |
| D | ChangeLog | 1 2020-07-10 Simon J Gerraty <sjg@beast.crufty.net> 5 2020-06-28 Simon J Gerraty <sjg@beast.crufty.net> 10 2020-06-22 Simon J Gerraty <sjg@beast.crufty.net> 16 2020-06-10 Simon J Gerraty <sjg@beast.crufty.net> 22 2020-06-06 Simon J Gerraty <sjg@beast.crufty.net> 32 2020-05-25 Simon J Gerraty <sjg@beast.crufty.net> 39 2020-05-15 Simon J Gerraty <sjg@beast.crufty.net> 46 2020-05-09 Simon J Gerraty <sjg@beast.crufty.net> 50 2020-05-02 Simon J Gerraty <sjg@beast.crufty.net> 54 2020-05-01 Simon J Gerraty <sjg@beast.crufty.net> [all …]
|
| /freebsd-12-stable/stand/efi/libefi/ |
| D | efinet.c | 113 EFI_SIMPLE_NETWORK *net; in efinet_probe() local 123 status = BS->OpenProtocol(h, &sn_guid, (void **)&net, in efinet_probe() 139 EFI_SIMPLE_NETWORK *net; in efinet_put() local 143 net = nif->nif_devdata; in efinet_put() 144 if (net == NULL) in efinet_put() 147 status = net->Transmit(net, 0, len, pkt, NULL, NULL, NULL); in efinet_put() 154 status = net->GetStatus(net, NULL, &buf); in efinet_put() 169 EFI_SIMPLE_NETWORK *net; in efinet_get() local 176 net = nif->nif_devdata; in efinet_get() 177 if (net == NULL) in efinet_get() [all …]
|
| /freebsd-12-stable/contrib/flex/ |
| D | ChangeLog | 40 2012-07-29 Will Estes <wlestes@users.sourceforge.net> 101 2012-07-23 Will Estes <wlestes@users.sourceforge.net> 107 2012-07-22 Will Estes <wlestes@users.sourceforge.net> 114 2012-07-22 Will Estes <wlestes@users.sourceforge.net> 131 2012-07-22 Will Estes <wlestes@users.sourceforge.net> 135 2012-06-23 Will Estes <wlestes@users.sourceforge.net> 139 2012-06-22 Will Estes <wlestes@users.sourceforge.net> 143 2012-04-27 Will Estes <wlestes@users.sourceforge.net> 147 2012-04-27 Will Estes <wlestes@users.sourceforge.net> 151 2012-03-31 Will Estes <wlestes@users.sourceforge.net> [all …]
|
| /freebsd-12-stable/contrib/tcpdump/ |
| D | CREDITS | 14 Aaron Campbell <aaron at arbor dot net> 15 A Costa <agcosta at gis dot net> 17 Alexandra Kossovsky <alexandra1975 at sourceforge dot net> 19 Ananth Suryanarayana <anantha at juniper dot net> 21 Andrew Brown <atatat at atatdot dot net> 22 Andrew Church <andrew at users dot sourceforge dot net> 24 Andrew Hintz <adhintz at users dot sourceforge dot net> 27 Andy Heffernan <ahh at juniper dot net> 28 Anton Bernal <anton at juniper dot net> 32 Arnaldo Carvalho de Melo <acme at ghostprotocols dot net> [all …]
|
| /freebsd-12-stable/sys/contrib/ngatm/netnatm/msg/ |
| D | ie.def | 35 element cause 0x08 net 34 40 element eetd 0x42 net 13 47 element traffic 0x59 net 50 element qos 0x5c net 6 63 element tns 0x78 net 66 element git 0x7f net 33 68 element mintraffic 0x81 net 70 element atraffic 0x82 net 71 element abrsetup 0x84 net 36 file=abr 73 element called_soft 0xe0 net 11 file=soft pnni [all …]
|
| /freebsd-12-stable/contrib/dialog/package/debian/ |
| D | changelog | 5 -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 21 Sep 2013 09:18:26 -0400 11 -- Thomas E. Dickey <dickey@invisible-island.net> Sun, 01 Sep 2013 19:08:31 -0400 17 -- Thomas E. Dickey <dickey@invisible-island.net> Thu, 23 May 2013 19:25:01 -0400 23 -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 15 Mar 2013 04:41:20 -0400 31 -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 06 Oct 2012 09:19:29 -0400 37 -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 06 Jul 2012 12:52:46 -0400 44 -- Thomas E. Dickey <dickey@invisible-island.net> Sat, 30 Jun 2012 10:41:05 -0400 50 -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 15 Feb 2012 19:40:32 -0500 56 -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 19 Oct 2011 19:17:40 -0400 66 -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 07 Sep 2011 20:04:04 -0400 [all …]
|
| /freebsd-12-stable/contrib/bmake/ |
| D | ChangeLog | 1 2020-07-10 Simon J Gerraty <sjg@beast.crufty.net> 10 2020-07-09 Simon J Gerraty <sjg@beast.crufty.net> 18 2020-07-04 Simon J Gerraty <sjg@beast.crufty.net> 41 2020-07-02 Simon J Gerraty <sjg@beast.crufty.net> 49 2020-07-01 Simon J Gerraty <sjg@beast.crufty.net> 57 2020-06-29 Simon J Gerraty <sjg@beast.crufty.net> 63 2020-06-25 Simon J Gerraty <sjg@beast.crufty.net> 69 2020-06-22 Simon J Gerraty <sjg@beast.crufty.net> 75 2020-06-19 Simon J Gerraty <sjg@beast.crufty.net> 85 2020-06-10 Simon J Gerraty <sjg@beast.crufty.net> [all …]
|
| /freebsd-12-stable/lib/libc/inet/ |
| D | inet_makeaddr.c | 51 inet_makeaddr(in_addr_t net, in_addr_t host) in inet_makeaddr() argument 55 if (net < 128U) in inet_makeaddr() 56 a.s_addr = (net << IN_CLASSA_NSHIFT) | (host & IN_CLASSA_HOST); in inet_makeaddr() 57 else if (net < 65536U) in inet_makeaddr() 58 a.s_addr = (net << IN_CLASSB_NSHIFT) | (host & IN_CLASSB_HOST); in inet_makeaddr() 59 else if (net < 16777216L) in inet_makeaddr() 60 a.s_addr = (net << IN_CLASSC_NSHIFT) | (host & IN_CLASSC_HOST); in inet_makeaddr() 62 a.s_addr = net | host; in inet_makeaddr()
|
| /freebsd-12-stable/contrib/byacc/package/debian/ |
| D | changelog | 5 -- Thomas E. Dickey <dickey@invisible-island.net> Sun, 30 Apr 2017 16:55:15 -0400 11 -- Thomas E. Dickey <dickey@invisible-island.net> Wed, 01 Feb 2017 04:55:04 -0500 17 -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 02 Dec 2016 07:58:46 -0500 23 -- Thomas E. Dickey <dickey@invisible-island.net> Mon, 06 Jun 2016 20:44:26 -0400 29 -- Thomas E. Dickey <dickey@invisible-island.net> Mon, 06 Jun 2016 05:21:18 -0400 35 -- Thomas E. Dickey <dickey@invisible-island.net> Thu, 24 Mar 2016 19:55:52 -0400 41 -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 10 Jul 2015 20:53:15 -0400 47 -- Thomas E. Dickey <dickey@invisible-island.net> Sun, 05 Jul 2015 18:24:51 -0400 53 -- Thomas E. Dickey <dickey@invisible-island.net> Fri, 28 Nov 2014 10:42:17 -0500 59 -- Thomas E. Dickey <dickey@invisible-island.net> Mon, 06 Oct 2014 18:52:03 -0400 [all …]
|
| /freebsd-12-stable/contrib/netbsd-tests/net/net/ |
| D | t_ipaddress.sh | 36 local net=10.0.0/24 50 check_route $net 'link#2' UC shmif0 58 check_route_no_entry $net 67 check_route $net 'link#2' UC shmif0 75 check_route_no_entry $net 83 local net=fc00::/64 97 check_route $net 'link#2' UC shmif0 105 check_route_no_entry $net 114 check_route $net 'link#2' UC shmif0 122 check_route_no_entry $net [all …]
|
| /freebsd-12-stable/contrib/unbound/util/storage/ |
| D | dnstree.c | 67 if(n1->net < n2->net) in addr_tree_compare() 69 if(n1->net > n2->net) in addr_tree_compare() 110 struct sockaddr_storage* addr, socklen_t addrlen, int net) in addr_tree_insert() argument 115 node->net = net; in addr_tree_insert() 131 m = addr_in_common(&prev->addr, prev->net, &node->addr, in addr_tree_init_parents_node() 132 node->net, node->addrlen); in addr_tree_init_parents_node() 136 if(p->net <= m) { in addr_tree_init_parents_node() 232 key.net = (addr_is_ip6(addr, addrlen)?128:32); in addr_tree_lookup() 243 m = addr_in_common(&result->addr, result->net, addr, in addr_tree_lookup() 244 key.net, addrlen); in addr_tree_lookup() [all …]
|
| /freebsd-12-stable/usr.sbin/timed/timed/ |
| D | candidate.c | 49 election(struct netinfo *net) in election() argument 65 while (0 != readmsg(TSP_REFUSE, ANYADDR, &wait, net)) { in election() 69 while (0 != readmsg(TSP_QUIT, ANYADDR, &wait, net)) { in election() 83 (struct sockaddr*)&net->dest_addr, in election() 85 trace_sendto_err(net->dest_addr.sin_addr); in election() 94 resp = readmsg(TSP_ANY, ANYADDR, &wait, net); in election() 113 suppress(&from, resp->tsp_name, net); in election() 116 rmnetmachs(net); in election() 132 rmnetmachs(net); in election()
|
| /freebsd-12-stable/tools/tools/sysdoc/ |
| D | tunables.mdoc | 1246 net.inet.accf.unloadable 1249 net.inet.icmp.bmcastecho 1252 net.inet.icmp.drop_redirect 1255 net.inet.icmp.icmplim 1258 net.inet.icmp.icmplim_output 1261 net.inet.icmp.log_redirect 1264 net.inet.icmp.maskfake 1267 net.inet.icmp.maskrepl 1270 net.inet.ip.accept_sourceroute 1276 net.inet.ip.check_interface [all …]
|
| /freebsd-12-stable/contrib/libpcap/ |
| D | CREDITS | 16 Alon Bar-Lev <alonbl at sourceforge dot net> 18 Andrew Brown <atatat at atatdot dot net> 19 <andy-1 at sourceforge dot net> 22 Arien Vijn <arienvijn at sourceforge dot net> 31 Chris Lightfoot <cwrl at users dot sourceforge dot net> 45 dhruv <rsrivat at sourceforge dot net> 49 dzejarczech <dzejarczech at sourceforge dot net> 50 Edward Sheldrake <ejs1920 at sourceforge dot net> 56 frederich <frederich at sourceforge dot net> 60 Garrett Cooper <yaberauneya at sourceforge dot net> [all …]
|
| /freebsd-12-stable/sbin/nos-tun/ |
| D | nos-tun.c | 89 int net; /* socket descriptor */ variable 203 close(net); in Finish() 319 if ((net = socket(AF_INET, SOCK_RAW, protnum)) < 0) { in main() 327 if (bind(net, &wherefrom, sizeof(wherefrom)) < 0) { in main() 333 if (connect(net,&whereto,sizeof(struct sockaddr_in)) < 0 ) { in main() 335 close(net); in main() 347 if (tun > net) in main() 350 lastfd = net; in main() 355 FD_SET(tun,&rfds); FD_SET(net,&rfds); in main() 360 close(net); in main() [all …]
|