Lines Matching full:transport
66 (local->srx.transport.family - srx->transport.family));
70 switch (srx->transport.family) {
72 /* If the choice of UDP port is left up to the transport, then
75 return ((u16 __force)local->srx.transport.sin.sin_port -
76 (u16 __force)srx->transport.sin.sin_port) ?:
77 memcmp(&local->srx.transport.sin.sin_addr,
78 &srx->transport.sin.sin_addr,
82 /* If the choice of UDP6 port is left up to the transport, then
85 return ((u16 __force)local->srx.transport.sin6.sin6_port -
86 (u16 __force)srx->transport.sin6.sin6_port) ?:
87 memcmp(&local->srx.transport.sin6.sin6_addr,
88 &srx->transport.sin6.sin6_addr,
172 local, srx->transport_type, srx->transport.family);
174 udp_conf.family = srx->transport.family;
177 udp_conf.local_ip = srx->transport.sin.sin_addr;
178 udp_conf.local_udp_port = srx->transport.sin.sin_port;
181 udp_conf.local_ip6 = srx->transport.sin6.sin6_addr;
182 udp_conf.local_udp_port = srx->transport.sin6.sin6_port;
203 switch (srx->transport.family) {
257 srx->transport_type, srx->transport.family, &srx->transport);
268 /* Services aren't allowed to share transport sockets, so
270 * but it may also still have the local transport address that
279 * Attempting to bind the transport socket may still fail if
396 * start the closure of the transport in the I/O thread..