Searched refs:to (Results 1 - 25 of 82) sorted by relevance

1234

/net/ax25/
H A DKconfig9 If you want to connect your Linux box to an amateur radio, answer Y
10 here. You want to read <http://www.tapr.org/>
14 Note that the answer to this question won't directly affect the
15 kernel: saying N will just cause the configurator to skip all
26 radio. It is either used by itself for point-to-point links, or to
28 that connects your Linux box to your amateur radio. You can either
30 modem connecting your computer's serial port to your radio's
35 own drivers). If you say Y here, you also have to sa
[all...]
/net/x25/
H A DKconfig8 X.25 is a set of standardized network protocols, similar in scope to
9 frame relay; the one physical line from your box to the X.25 network
10 entry point can carry several logical point-to-point connections
11 (called "virtual circuits") to other computers connected to the X.25
12 network. Governments, banks, and other organizations tend to use it
13 to connect to each other or to form Wide Area Networks (WANs). Many
17 (say Y to "LAP
[all...]
/net/dns_resolver/
H A DKconfig9 which can be used to make upcalls to perform DNS lookups in
12 DNS Resolver is used to query DNS server for information. Examples
13 being resolving a UNC hostname element to an IP address for CIFS or
/net/decnet/netfilter/
H A DKconfig12 Enable this module if you want to use the userland DECnet routing
13 daemon. You will also need to enable routing support for DECnet
14 unless you just want to monitor routing messages from other nodes.
/net/bridge/
H A DKconfig11 If you say Y here, then your Linux box will be able to act as an
13 is connected to will appear as one Ethernet to the participants.
14 Several such bridges can work together to create even larger
19 In order to use the Ethernet bridge, you'll need the bridge
26 iptables will then see the IP packets being bridged, so you need to
46 Say N to exclude this support and reduce the binary size.
60 Say N to exclude this support and reduce the binary size.
H A Dbr_forward.c29 /* Don't forward packets to originating port or forwarding disabled */
62 static void __br_deliver(const struct net_bridge_port *to, struct sk_buff *skb) argument
64 skb = br_handle_vlan(to->br, nbp_get_vlan_info(to), skb);
68 skb->dev = to->dev;
70 if (unlikely(netpoll_tx_running(to->br->dev))) {
75 br_netpoll_send_skb(to, skb);
84 static void __br_forward(const struct net_bridge_port *to, struct sk_buff *skb) argument
93 skb = br_handle_vlan(to->br, nbp_get_vlan_info(to), sk
106 br_deliver(const struct net_bridge_port *to, struct sk_buff *skb) argument
118 br_forward(const struct net_bridge_port *to, struct sk_buff *skb, struct sk_buff *skb0) argument
[all...]
/net/dccp/
H A Doptions.c49 * @dreq: request socket to use during connection setup, or NULL
100 * The same applies to Ack Vectors, as these depend on the CCID.
137 * RFC 4340 13.1: "The precise time corresponding to
139 * zero to indicate absence of a meaningful timestamp.
193 /* Give precedence to the biggest ELAPSED_TIME */
269 void dccp_encode_value_var(const u64 value, u8 *to, const u8 len) argument
272 *to++ = (value & 0xFF0000000000ull) >> 40;
274 *to++ = (value & 0xFF00000000ull) >> 32;
276 *to++ = (value & 0xFF000000) >> 24;
278 *to
295 unsigned char *to; local
360 unsigned char *to; local
410 unsigned char *to; local
507 u8 tot_len, *to; local
[all...]
/net/8021q/
H A DKconfig8 Select this and you will be able to create 802.1Q VLAN interfaces
12 the 'ip' utility in order to effectively use VLANs.
26 Select this to enable GVRP end-system support. GVRP is used for
27 automatic propagation of registered VLANs to switches.
36 Select this to enable MVRP end-system support. MVRP is used for
37 automatic propagation of registered VLANs to switches; it
/net/phonet/
H A DKconfig11 This is required for Maemo to use cellular data connectivity (if
12 supported). It can also be used to control Nokia phones
13 from a Linux computer, although AT commands may be easier to use.
/net/netfilter/ipvs/
H A DKconfig12 that will take care of intercepting incoming connections to a
13 single IP address and scheduling them to real servers.
18 be used to choose which server the connection is directed to,
23 If you want to compile it in kernel, say Y. To compile it as a
33 Add IPv6 support to IPVS.
40 Say Y here if you want to get additional messages useful in
49 The IPVS connection hash table uses the chaining scheme to handle
55 value of 2 to the your input number power. The number to choos
[all...]
/net/core/
H A Ddev_addr_lists.c192 * between source and destionation of they synch. If you ever need to
193 * sync addresses to more then 1 destination, you need to use
230 * @list: address list to syncronize
231 * @dev: device to sync
232 * @sync: function to call if address should be added
233 * @unsync: function to call if address should be removed
235 * This funciton is intended to be called from the ndo_set_rx_mode
239 * any notification to the device.
263 /* go through and sync new entries to th
537 dev_uc_sync(struct net_device *to, struct net_device *from) argument
567 dev_uc_sync_multiple(struct net_device *to, struct net_device *from) argument
592 dev_uc_unsync(struct net_device *to, struct net_device *from) argument
758 dev_mc_sync(struct net_device *to, struct net_device *from) argument
788 dev_mc_sync_multiple(struct net_device *to, struct net_device *from) argument
813 dev_mc_unsync(struct net_device *to, struct net_device *from) argument
[all...]
/net/l2tp/
H A DKconfig17 possible to both end-users and applications.
19 L2TP is often used to tunnel PPP traffic over IP
22 with home workers to connect to their offices.
24 L2TPv3 allows other protocols as well as PPP to be carried
41 used to dump internal state of the l2tp drivers for problem
61 tunneling Point-to-Point Protocol (PPP) [RFC1661] sessions.
66 If you are connecting to L2TPv3 equipment, or you want to
96 used as a control protocol and for data encapsulation to se
[all...]
/net/sched/
H A DKconfig9 When the kernel has several packets to send out over a network
10 device, it has to decide which ones to send first, which ones to
11 delay, and which ones to drop. This is the job of the queueing
12 disciplines, several different algorithms for how to do this
17 able to choose from among several alternative algorithms which can
18 then be attached to different network devices. This is useful for
20 need a certain minimum data flow rate, or if you need to limit the
22 This code is considered to b
[all...]
/net/caif/
H A DKconfig10 The "Communication CPU to Application CPU Interface" (CAIF) is a packet
17 If you select to build it as module then CAIF_NETDEV also needs to be
18 built as modules. You will also need to say yes to any CAIF physical
21 See Documentation/networking/caif for a further explanation on how to
40 If you select to build it as a built-in then the main CAIF device must
51 If you select to build it as a built-in then the main CAIF device must
/net/decnet/
H A DKconfig10 to those which run over TCP/IP.
12 To find some tools to use with the kernel layer support, please
19 Be sure to say Y to "/proc file system support" and "Sysctl support"
20 below when using DECnet, since you will need sysctl support to aid
34 do say Y here, then make sure that you also say Y to "Kernel/User
36 filtering". The first two are required to allow configuration via
40 to work.
/net/hsr/
H A DKconfig8 If you say Y here, then your Linux box will be able to act as a
9 DANH ("Doubly attached node implementing HSR"). For this to work,
20 This code is a "best effort" to comply with the HSR standard as
24 You need to perform any and all necessary tests yourself before
/net/irda/
H A DKconfig10 Say Y here if you want to build support for the IrDA (TM) protocols.
16 the file <file:Documentation/networking/irda.txt>. You also want to
20 If you want to exchange bits of data (vCal, vCard) with a PDA, you
21 will need to install some OBEX application, such as OpenObex :
40 Say Y here to support the connectionless Ultra IRDA protocol.
41 Ultra allows to exchange data over IrDA with really simple devices
53 Say Y here if you want IrLMP to cache the last LSAP used. This
63 Say Y here is you want IrLAP to send fast RR (Receive Ready) frames
72 the secondary station will not have to wait the max. turn around
73 time (usually 500ms) before it is allowed to transmi
[all...]
/net/lapb/
H A DKconfig10 connection service to exchange data frames with one other host, and
11 it is used to transport higher level protocols (mostly X.25 Packet
15 to use LAPB connections over Ethernet, say Y here and to "LAPB over
/net/mpls/
H A DKconfig7 This is helper module to allow segmentation of non-MPLS GSO packets
/net/tipc/
H A DKconfig18 want). The module will be called tipc. If you want to compile it
30 Can range from 127 to 65535 ports; default is 8191.
32 Setting this to a smaller value saves some memory,
33 setting it to higher allows for more ports.
/net/atm/
H A Datm_misc.c87 void sonet_copy_stats(struct k_sonet_stats *from, struct sonet_stats *to) argument
89 #define __HANDLE_ITEM(i) to->i = atomic_read(&from->i)
95 void sonet_subtract_stats(struct k_sonet_stats *from, struct sonet_stats *to) argument
97 #define __HANDLE_ITEM(i) atomic_sub(to->i, &from->i)
H A DKconfig13 In order to participate in an ATM network, your Linux box needs an
14 ATM networking card. If you have that, say Y here and to the driver
17 Note that you need a set of user-space programs to actually make use
26 ATMARP. If you want to communication with other IP hosts on your ATM
27 network, you will typically either say Y here or to "LAN Emulation
35 cannot be reached because there is no VC to it in the kernel's
37 briefly removed during revalidation. If you say Y here, packets to
47 ELAN and Ethernet segments. You need LANE if you want to try MPOA.
62 ATM PVCs can carry ethernet PDUs according to RFC2684 (formerly 1483)
71 This is an experimental mechanism for users who need to terminat
[all...]
/net/batman-adv/
H A DKconfig12 B.A.T.M.A.N. (better approach to mobile ad-hoc networking) is
24 to avoid Ethernet frames looping when mesh nodes are connected
25 to both the same LAN and the same mesh. If you will never use
44 This option enables network coding, a mechanism that aims to
48 configured to have promiscuous mode enabled in order to make
58 This option enables the multicast optimisation which aims to
68 outputting debugging information to the kernel log. The
/net/ipx/
H A DKconfig10 want to access Novell NetWare file or print servers using the Linux
15 to do the former, you'll also have to say Y to "NCP file system
18 IPX is similar in scope to IP, while SPX, which runs on top of IPX,
19 is similar to TCP.
30 Unless you want to integrate your Linux box with a local Novell
38 useful to give an IPX "network" address to your Linux box as well
41 same address). The way this is done is to creat
[all...]
/net/xfrm/
H A DKconfig28 one, two policies can be applied to the same packet at once.
37 A feature to update locator(s) of a given IPsec security
40 where mobile nodes change their attachment point to the Internet.
64 PF_KEYv2 socket family, compatible to KAME ones.
65 They are required if you are going to use IPsec tools ported
75 Add a PF_KEY MIGRATE message to PF_KEYv2 socket family.
76 The PF_KEY MIGRATE message is used to dynamically update
80 change their attachment point to the Internet. Detail

Completed in 287 milliseconds

1234