1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
|
#
# 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
# or http://www.opensolaris.org/os/licensing.
# 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 2009 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# Copyright 2019 Joyent, Inc.
#
# This makefile drives the production of the ip driver
# kernel module.
#
# intel implementation architecture dependent
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../..
#
# Define the module and object file sets.
#
MODULE = ip
OBJECTS = $(IP_OBJS:%=$(OBJS_DIR)/%)
ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
ROOTLINK = $(ROOT_STRMOD_DIR)/$(MODULE)
CONF_SRCDIR = $(UTSBASE)/common/inet/ip
#
# Include common rules.
#
include $(UTSBASE)/intel/Makefile.intel
#
# Define targets
#
ALL_TARGET = $(BINARY) $(SRC_CONFFILE)
INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK) $(ROOT_CONFFILE)
CFLAGS += $(CINLINEFLAGS)
CERRWARN += -Wno-parentheses
CERRWARN += -Wno-unused-function
CERRWARN += -Wno-unused-variable
CERRWARN += -Wno-switch
CERRWARN += $(CNOWARN_UNINIT)
CERRWARN += -Wno-type-limits
# false positives
SMOFF += index_overflow
# need work still
$(OBJS_DIR)/igmp.o : SMOFF += shift_to_zero
$(OBJS_DIR)/tnet.o : SMOFF += shift_to_zero
$(OBJS_DIR)/radix.o : SMOFF += signed_integer_overflow_check
SMOFF += signed,all_func_returns
#
# To get the BPF header files included by ipnet.h
#
INC_PATH += -I$(UTSBASE)/common/io/bpf
#
# Depends on md5 and swrand (for SCTP). SCTP needs to depend on
# swrand as it needs random numbers early on during boot before
# kCF subsystem can load swrand.
#
LDFLAGS += -Nmisc/md5 -Ncrypto/swrand -Nmisc/hook -Nmisc/neti
#
# Depends on the congestion control framework for TCP connections.
# We make several different algorithms available by default.
#
LDFLAGS += -N misc/cc -N cc/cc_sunreno -N cc/cc_newreno -N cc/cc_cubic
#
# For now, disable these warnings; maintainers should endeavor
# to investigate and remove these for maximum coverage.
# Please do not carry these forward to new Makefiles.
#
#
# Default build targets.
#
.KEEP_STATE:
def: $(DEF_DEPS)
all: $(ALL_DEPS) $(SISCHECK_DEPS)
clean: $(CLEAN_DEPS) $(SISCLEAN_DEPS)
# Need to clobber all build types due to ipctf.a
clobber: $(CLOBBER_DEPS) $(SISCLEAN_DEPS) \
clobber.obj64 clobber.debug64
install: $(INSTALL_DEPS) $(SISCHECK_DEPS)
$(ROOTLINK): $(ROOT_STRMOD_DIR) $(ROOTMODULE)
-$(RM) $@; ln $(ROOTMODULE) $@
#
# Include common targets.
#
include $(UTSBASE)/intel/Makefile.targ
#
# The ip CTF data is merged into the genunix module because these types are
# complex and heavily shared. The genunix build will execute one of the
# rules below to create an archive, ipctf.a, containing the ip objects. The
# real ip will be uniquified against genunix later in the build, and will
# emerge containing very few types.
#
$(OBJS_DIR)/ipctf.a: $(OBJECTS)
-$(RM) $@
$(AR) -r $@ $(OBJECTS)
$(OBJECTS): $(OBJS_DIR)
CLOBBERFILES += $(OBJS_DIR)/ipctf.a
ipctf.obj64: FRC
@BUILD_TYPE=OBJ64 VERSION='$(VERSION)' $(MAKE) obj64/ipctf.a
ipctf.debug64: FRC
@BUILD_TYPE=DBG64 VERSION='$(VERSION)' $(MAKE) debug64/ipctf.a
#
# 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
# or http://www.opensolaris.org/os/licensing.
# 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 (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
# Copyright 2011 Nexenta Systems, Inc. All rights reserved
# Copyright 2019 Joyent, Inc. All rights reserved
# Copyright 2026 Oxide Computer Company
#
arp_m_tbl
arp_mod_info
arp_netinfo
arp_no_defense
arpinfo
cb_inet_devops
cl_inet_bind
cl_inet_checkspi
cl_inet_connect2
cl_inet_deletespi
cl_inet_disconnect
cl_inet_getspi
cl_inet_idlesa
cl_inet_ipident
cl_inet_isclusterwide
cl_inet_listen
cl_inet_unbind
cl_inet_unlisten
cl_sctp_assoc_change
cl_sctp_check_addrs
cl_sctp_connect
cl_sctp_disconnect
cl_sctp_listen
cl_sctp_unlisten
conn_drain_nthreads
dce_cache
dce_reclaim_cv
dce_reclaim_lock
dce_reclaim_shutdown
dce_reclaim_thread
default_ip6_asp_table
do_tcp_fusion
do_tcpzcopy
dohwcksum
dummy_mod_info
dummymodinfo
dummyrmodinit
dummywmodinit
eventq_queue_in
eventq_queue_nic
eventq_queue_out
fsw
gcdb_hash
gcdb_hash_size
gcdb_lock
gcgrp4_hash
gcgrp6_hash
gcgrp_hash_size
gcgrp_lock
icmp_fallback_sock_winit
icmp_frag_size_table
icmp_g_t_info_ack
icmp_ipha
icmp_max_optsize
icmp_mod_info
icmp_opt_arr
icmp_opt_obj
icmp_propinfo_tbl
icmp_valid_levels_arr
icmpinfov4
icmpinfov6
icmprinitv4
icmprinitv6
icmpwinit
ilb_conn_cache
ilb_conn_cache_timeout
ilb_conn_hash_size
ilb_conn_tcp_expiry
ilb_conn_timer_size
ilb_conn_udp_expiry
ilb_kstat_instance
ilb_kmem_flags
ilb_nat_src_hash_size
ilb_nat_src_instance
ilb_rule_hash_size
ilb_sticky_cache
ilb_sticky_hash_size
ilb_sticky_expiry
ilb_sticky_timer_size
ilb_sticky_timeout
ill_no_arena
inet_dev_info
inet_devops
ip6_ftable_hash_size
ip6opt_ls
ip_cgtp_filter_rev
ip_conn_cache
ip_dce_hash_size
ip_dce_reclaim_interval
ip_dce_reclaim_threshold_hard
ip_debug
ip_g_all_ones
ip_helper_stream_info
ip_helper_stream_rinit
ip_helper_stream_winit
ip_ill_mcast_reclaim
ip_ioctl_ftbl
ip_loopback_mtu_v6plus
ip_loopback_mtuplus
ip_m_tbl
ip_max_frag_dups
ip_max_ill_mcast_nces
ip_min_frag_prune_time
ip_minor_arena_la
ip_minor_arena_sa
ip_misc_ioctl_count
ip_misc_ioctl_table
ip_mod_info
ip_modclose_ackwait_ms
ip_ndx_ioctl_count
ip_ndx_ioctl_table
ip_poll_normal_ms
ip_poll_normal_ticks
ip_propinfo_tbl
ip_propinfo_count
ip_rput_pullups
ip_six_byte_all_ones
ip_squeue_create_callback
ip_squeue_enter
ip_squeue_fanout
ip_squeue_flag
ip_thread_data
ip_thread_list
ip_thread_rwlock
ipcl_bind_fanout_size
ipcl_conn_hash_maxsize
ipcl_conn_hash_memfactor
ipcl_conn_hash_size
ipcl_iptun_fanout_size
ipcl_raw_fanout_size
ipcl_udp_fanout_size
ipif_loopback_name
ipif_zero
ipinfov4
ipinfov6
iplrinit
iplwinit
ipmp_kstats
iprinitv4
iprinitv6
ipsec_action_cache
ipsec_hdr_pullup_needed
ipsec_pol_cache
ipsec_policy_failure_msgs
ipsec_sel_cache
ipsec_spd_hashsize
ipsec_weird_null_inbound_policy
ipv4info
ipv6_all_hosts_mcast
ipv6_all_ones
ipv6_all_rtrs_mcast
ipv6_all_v2rtrs_mcast
ipv6_all_zeros
ipv6_ll_template
ipv6_loopback
ipv6_solicited_node_mcast
ipv6_unspecified_group
ipv6info
ipwinit
ire_cache
ire_gw_secattr_cache
ire_null
ire_nv_arr
ire_nv_tbl
lcl_param_arr
mask_rnhead
max_keylen
modldrv
modlinkage
modlstrmod
multicast_encap_iphdr
nce_cache
ncec_cache
netdev_privs
prov_update_handle
radix_mask_cache
radix_node_cache
rawip_conn_cache
recvq_call
recvq_loop_cnt
req_arr
rinit_arp
rn_mkfreelist
rn_ones
rn_zeros
rt_entry_cache
rts_conn_cache
rts_g_t_info_ack
rts_max_optsize
rts_mod_info
rts_opt_arr
rts_opt_obj
rts_valid_levels_arr
rtsinfo
rtsrinit
rtswinit
sctp_asconf_default_dispatch
sctp_asconf_dispatch_tbl
sctp_conn_cache
sctp_conn_hash_size
sctp_do_reclaim
sctp_kmem_faddr_cache
sctp_kmem_ftsn_set_cache
sctp_kmem_set_cache
sctp_min_assoc_listener
sctp_opt_arr
sctp_opt_arr_size
sctp_pa_early_abort
sctp_pp_early_abort
sctp_propinfo_tbl
sctp_propinfo_count
sctp_recvq_tq_list_max
sctp_recvq_tq_task_min
sctp_recvq_tq_thr_max
sctp_recvq_tq_thr_min
sctp_sin6_null
sctpdebug
sin6_null
sin_null
skip_sctp_cksum
sock_rawip_downcalls
sock_rts_downcalls
sock_tcp_downcalls
sock_udp_downcalls
sqset_global_list
sqset_global_size
sqset_lock
squeue_cache
squeue_drain_ms
squeue_drain_ns
squeue_drain_stack_needed
squeue_drain_stack_toodeep
squeue_poll_budget_bytes
tcp_acceptor_rinit
tcp_acceptor_winit
tcp_conn_cache
tcp_conn_hash_size
tcp_do_reclaim
tcp_drop_ack_unsent_cnt
tcp_dummy_upcalls
tcp_early_abort
tcp_fallback_sock_winit
tcp_free_list_max_cnt
tcp_g_kstat
tcp_g_statistics
tcp_g_t_info_ack
tcp_g_t_info_ack_v6
tcp_icmp_source_quench
tcp_init_wnd_chk
tcp_max_init_cwnd
tcp_max_optsize
tcp_min_conn_listener
tcp_notsack_blk_cache
tcp_opt_arr
tcp_opt_obj
tcp_outbound_squeue_switch
tcp_propinfo_tbl
tcp_propinfo_count
tcp_random_anon_port
tcp_random_end_ptr
tcp_random_fptr
tcp_random_lock
tcp_random_rptr
tcp_random_state
tcp_randtbl
tcp_rinfo
tcp_rinitv4
tcp_rinitv6
tcp_sock_winit
tcp_squeue_flag
tcp_squeue_wput
tcp_static_maxpsz
tcp_timercache
tcp_tx_pull_len
tcp_valid_levels_arr
tcp_winfo
tcp_winit
tcpinfov4
tcpinfov6
tli_errs
tsol_strict_error
tun_spd_hashsize
udp_bind_fanout_size
udp_conn_cache
udp_fallback_sock_winit
udp_g_t_info_ack_ipv4
udp_g_t_info_ack_ipv6
udp_lrinit
udp_lwinit
udp_max_optsize
udp_mod_info
udp_opt_arr
udp_opt_obj
udp_propinfo_tbl
udp_propinfo_count
udp_random_anon_port
udp_rinitv4
udp_rinitv6
udp_valid_levels_arr
udp_winit
udpinfov4
udpinfov6
winit_arp
nxge_cksum_workaround
#
# 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
# or http://www.opensolaris.org/os/licensing.
# 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 (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
# Copyright 2011 Nexenta Systems, Inc. All rights reserved
# Copyright 2019 Joyent, Inc. All rights reserved
# Copyright 2026 Oxide Computer Company
#
arp_m_tbl
arp_mod_info
arp_netinfo
arp_no_defense
arpinfo
cb_inet_devops
cl_inet_bind
cl_inet_checkspi
cl_inet_connect2
cl_inet_deletespi
cl_inet_disconnect
cl_inet_getspi
cl_inet_idlesa
cl_inet_ipident
cl_inet_isclusterwide
cl_inet_listen
cl_inet_unbind
cl_inet_unlisten
cl_sctp_assoc_change
cl_sctp_check_addrs
cl_sctp_connect
cl_sctp_disconnect
cl_sctp_listen
cl_sctp_unlisten
conn_drain_nthreads
dce_cache
dce_reclaim_cv
dce_reclaim_lock
dce_reclaim_shutdown
dce_reclaim_thread
default_ip6_asp_table
do_tcp_fusion
do_tcpzcopy
dohwcksum
dummy_mod_info
dummymodinfo
dummyrmodinit
dummywmodinit
eventq_queue_in
eventq_queue_nic
eventq_queue_out
fsw
gcdb_hash
gcdb_hash_size
gcdb_lock
gcgrp4_hash
gcgrp6_hash
gcgrp_hash_size
gcgrp_lock
icmp_fallback_sock_winit
icmp_frag_size_table
icmp_g_t_info_ack
icmp_ipha
icmp_max_optsize
icmp_mod_info
icmp_opt_arr
icmp_opt_obj
icmp_propinfo_tbl
icmp_valid_levels_arr
icmpinfov4
icmpinfov6
icmprinitv4
icmprinitv6
icmpwinit
ilb_conn_cache
ilb_conn_cache_timeout
ilb_conn_hash_size
ilb_conn_tcp_expiry
ilb_conn_timer_size
ilb_conn_udp_expiry
ilb_kstat_instance
ilb_kmem_flags
ilb_nat_src_hash_size
ilb_nat_src_instance
ilb_rule_hash_size
ilb_sticky_cache
ilb_sticky_hash_size
ilb_sticky_expiry
ilb_sticky_timer_size
ilb_sticky_timeout
ill_no_arena
inet_dev_info
inet_devops
ip6_ftable_hash_size
ip6opt_ls
ip_cgtp_filter_rev
ip_conn_cache
ip_dce_hash_size
ip_dce_reclaim_interval
ip_dce_reclaim_threshold_hard
ip_debug
ip_g_all_ones
ip_helper_stream_info
ip_helper_stream_rinit
ip_helper_stream_winit
ip_ill_mcast_reclaim
ip_ioctl_ftbl
ip_loopback_mtu_v6plus
ip_loopback_mtuplus
ip_m_tbl
ip_max_frag_dups
ip_max_ill_mcast_nces
ip_min_frag_prune_time
ip_minor_arena_la
ip_minor_arena_sa
ip_misc_ioctl_count
ip_misc_ioctl_table
ip_mod_info
ip_modclose_ackwait_ms
ip_ndx_ioctl_count
ip_ndx_ioctl_table
ip_poll_normal_ms
ip_poll_normal_ticks
ip_propinfo_tbl
ip_propinfo_count
ip_rput_pullups
ip_six_byte_all_ones
ip_squeue_create_callback
ip_squeue_enter
ip_squeue_fanout
ip_squeue_flag
ip_thread_data
ip_thread_list
ip_thread_rwlock
ipcl_bind_fanout_size
ipcl_conn_hash_maxsize
ipcl_conn_hash_memfactor
ipcl_conn_hash_size
ipcl_iptun_fanout_size
ipcl_raw_fanout_size
ipcl_udp_fanout_size
ipif_loopback_name
ipif_zero
ipinfov4
ipinfov6
iplrinit
iplwinit
ipmp_kstats
iprinitv4
iprinitv6
ipsec_action_cache
ipsec_hdr_pullup_needed
ipsec_pol_cache
ipsec_policy_failure_msgs
ipsec_sel_cache
ipsec_spd_hashsize
ipsec_weird_null_inbound_policy
ipv4info
ipv6_all_hosts_mcast
ipv6_all_ones
ipv6_all_rtrs_mcast
ipv6_all_v2rtrs_mcast
ipv6_all_zeros
ipv6_ll_template
ipv6_loopback
ipv6_solicited_node_mcast
ipv6_unspecified_group
ipv6info
ipwinit
ire_cache
ire_gw_secattr_cache
ire_null
ire_nv_arr
ire_nv_tbl
lcl_param_arr
mask_rnhead
max_keylen
modldrv
modlinkage
modlstrmod
multicast_encap_iphdr
nce_cache
ncec_cache
netdev_privs
prov_update_handle
radix_mask_cache
radix_node_cache
rawip_conn_cache
req_arr
rinit_arp
rn_mkfreelist
rn_ones
rn_zeros
rt_entry_cache
rts_conn_cache
rts_g_t_info_ack
rts_max_optsize
rts_mod_info
rts_opt_arr
rts_opt_obj
rts_valid_levels_arr
rtsinfo
rtsrinit
rtswinit
sctp_asconf_default_dispatch
sctp_asconf_dispatch_tbl
sctp_conn_cache
sctp_conn_hash_size
sctp_do_reclaim
sctp_kmem_faddr_cache
sctp_kmem_ftsn_set_cache
sctp_kmem_set_cache
sctp_min_assoc_listener
sctp_opt_arr
sctp_opt_arr_size
sctp_pa_early_abort
sctp_pp_early_abort
sctp_propinfo_tbl
sctp_propinfo_count
sctp_recvq_tq_list_max
sctp_recvq_tq_task_min
sctp_recvq_tq_thr_max
sctp_recvq_tq_thr_min
sctp_sin6_null
sctpdebug
sin6_null
sin_null
sock_rawip_downcalls
sock_rts_downcalls
sock_tcp_downcalls
sock_udp_downcalls
sqset_global_list
sqset_global_size
sqset_lock
squeue_cache
squeue_drain_ms
squeue_drain_ns
squeue_drain_stack_needed
squeue_drain_stack_toodeep
squeue_poll_budget_bytes
tcp_acceptor_rinit
tcp_acceptor_winit
tcp_conn_cache
tcp_conn_hash_size
tcp_do_reclaim
tcp_drop_ack_unsent_cnt
tcp_dummy_upcalls
tcp_early_abort
tcp_fallback_sock_winit
tcp_free_list_max_cnt
tcp_g_kstat
tcp_g_statistics
tcp_g_t_info_ack
tcp_g_t_info_ack_v6
tcp_icmp_source_quench
tcp_init_wnd_chk
tcp_max_init_cwnd
tcp_max_optsize
tcp_min_conn_listener
tcp_notsack_blk_cache
tcp_opt_arr
tcp_opt_obj
tcp_outbound_squeue_switch
tcp_propinfo_tbl
tcp_propinfo_count
tcp_random_anon_port
tcp_random_end_ptr
tcp_random_fptr
tcp_random_lock
tcp_random_rptr
tcp_random_state
tcp_randtbl
tcp_rinfo
tcp_rinitv4
tcp_rinitv6
tcp_sock_winit
tcp_squeue_flag
tcp_squeue_wput
tcp_static_maxpsz
tcp_timercache
tcp_tx_pull_len
tcp_valid_levels_arr
tcp_winfo
tcp_winit
tcpinfov4
tcpinfov6
tli_errs
tsol_strict_error
tun_spd_hashsize
udp_bind_fanout_size
udp_conn_cache
udp_fallback_sock_winit
udp_g_t_info_ack_ipv4
udp_g_t_info_ack_ipv6
udp_lrinit
udp_lwinit
udp_max_optsize
udp_mod_info
udp_opt_arr
udp_opt_obj
udp_propinfo_tbl
udp_propinfo_count
udp_random_anon_port
udp_rinitv4
udp_rinitv6
udp_valid_levels_arr
udp_winit
udpinfov4
udpinfov6
winit_arp
nxge_cksum_workaround
|