OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UDP
(Results
1 - 25
of
26
) sorted by relevancy
1
2
/src/sys/rump/net/lib/libnetinet/
Makefile
5
COMMENT=IPv4 incl. TCP and
UDP
(PF_INET)
/src/sys/rump/net/lib/libnetinet6/
Makefile
5
COMMENT=IPv6 incl. TCP and
UDP
(PF_INET6)
/src/usr.bin/systat/
systat.h
58
#define
UDP
0x2
netcmds.c
136
selectproto("
udp
");
160
protos == TCP ? "tcp" : protos ==
UDP
? "
udp
" : 0);
184
protos = TCP|
UDP
;
187
else if (streq(proto, "
udp
"))
188
protos =
UDP
;
198
if ((protos &
UDP
) == 0)
200
addstr("
udp
");
256
protos == (TCP|
UDP
) ? 0 : protos == TCP ? "tcp" : "
udp
");
[
all
...]
netstat.c
70
#include <netinet/
udp
.h>
182
protos = TCP|
UDP
;
196
if ((protos & (TCP |
UDP
)) == 0) {
202
if ((protos &
UDP
) && namelist[X_UDBTABLE].n_type)
207
if ((protos &
UDP
) && namelist[X_UDBTABLE].n_type)
252
enter(inp, &sockb, 0, "
udp
");
297
enter6(inp, &sockb, 0, "
udp
");
/src/external/mpl/bind/dist/bin/tests/system/dispatch/ans3/
ans.py
32
assert qctx.protocol == DnsProtocol.
UDP
, "This server only supports
UDP
"
/src/external/mpl/bind/dist/bin/tests/system/mismatchtcp/ans2/
ans.py
28
Simulate Kaminsky-style off-path spoofing: answer every
UDP
query for
40
return qctx.protocol == DnsProtocol.
UDP
and super().match(qctx)
/src/external/bsd/nsd/dist/simdzone/src/generic/
wks.h
14
// for TCP and
UDP
.
17
// may be in place for TCP and
UDP
). Note that BIND passes the protocol to
18
// getservbyname for TCP and
UDP
only, NULL otherwise, which means any
68
// subset of mnemonics (TCP and
UDP
) as well as numeric values and add
73
# define
UDP
(0x0000000000706475llu)
76
# define
UDP
(0x7564700000000000llu)
104
else if (key ==
UDP
)
217
(void)protocol; // all supported services map to tcp and
udp
/src/external/mpl/bind/dist/bin/tests/
test_client.c
41
UDP
,
50
static const char *protocols[] = { "
udp
", "tcp",
183
RUNTIME_CHECK(parse_protocol("
UDP
") == ISC_R_SUCCESS);
245
.ai_socktype = (protocol ==
UDP
) ? SOCK_DGRAM
264
.ai_socktype = (protocol ==
UDP
) ? SOCK_DGRAM
378
case
UDP
:
test_server.c
33
typedef enum {
UDP
, TCP, DOT, HTTPS, HTTP } protocol_t;
35
static const char *protocols[] = { "
udp
", "tcp", "dot", "https", "http-plain" };
118
RUNTIME_CHECK(parse_protocol("
UDP
") == ISC_R_SUCCESS);
248
case
UDP
:
/src/external/mpl/bind/dist/bin/tests/system/bailiwick/
bailiwick_ans.py
53
and qctx.protocol == DnsProtocol.
UDP
/src/tests/usr.sbin/inetd/
t_inetd.c
52
#define
UDP
17
67
"uses
UDP
/TCP ports 5432-5439 with localhost.");
165
int
udp
= create_socket("127.0.0.1", port, SOCK_DGRAM,
UDP
, 1, &addr);
local
167
CHECK_ERROR(sendto(
udp
, buffer, sizeof(buffer), 0,
182
ssize_t count = recvmsg(
udp
, &msg, 0);
186
CHECK_ERROR(close(
udp
));
193
CHECK_ERROR(close(
udp
));
/src/external/mpl/bind/dist/bin/tests/system/cookie/
cookie_ans.py
141
and qctx.protocol == DnsProtocol.
UDP
161
return qctx.qtype == dns.rdatatype.A and qctx.protocol == DnsProtocol.
UDP
/src/external/mpl/bind/dist/bin/tests/system/xfer/ans11/
ans.py
142
"""Set TC on an IXFR received over
UDP
to force the secondary to retry over TCP."""
145
return qctx.qtype == dns.rdatatype.IXFR and qctx.protocol == DnsProtocol.
UDP
/src/external/mit/libuv/dist/test/
echo-server.c
326
serverType =
UDP
;
task.h
83
UDP
,
/src/external/bsd/ntp/dist/ntpq/
ntpq-opts.def
117
descrip = "Use unconnected
UDP
to communicate with ntpd (default on Windows)";
119
Open an unconnected
UDP
association to ntpd (the default
178
Note that since NTP is a
UDP
protocol
/src/external/bsd/libpcap/dist/
grammar.y.in
377
%token ARP RARP IP SCTP TCP
UDP
ICMP IGMP IGRP PIM VRRP CARP
637
|
UDP
{ $$ = Q_UDP; }
scanner.l
269
udp
return
UDP
;
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
socket.d
363
UDP
= IPPROTO_UDP, /// User Datagram Protocol
2551
UDP
= ProtocolType.
UDP
, /// User Datagram Protocol level
3553
/// `UdpSocket` is a shortcut class for a
UDP
Socket.
3556
/// Constructs a blocking
UDP
Socket.
3559
super(family, SocketType.DGRAM, ProtocolType.
UDP
);
3563
/// Constructs a blocking IPv4
UDP
Socket.
/src/external/mpl/bind/dist/bin/tests/system/isctest/
asyncserver.py
57
Protocol implementation for handling
UDP
traffic using asyncio.
90
A generic asynchronous server which may handle
UDP
and/or TCP traffic.
229
UDP
= enum.auto()
795
Queries are currently always forwarded via
UDP
.
848
"Waiting %.1fs before forwarding %s query from %s to %s over
UDP
",
857
"Forwarding %s query from %s to %s over
UDP
",
875
"Relaying
UDP
response from %s to %s over %s",
1233
logging.debug("Received
UDP
message: %s", wire.hex())
1237
responses = self._handle_query(wire, socket, peer, DnsProtocol.
UDP
)
1239
logging.debug("Sending
UDP
message: %s", response.hex()
[
all
...]
/src/external/bsd/ntp/dist/ntpdc/
ntpdc-opts.def
110
descrip = "Use unconnected
UDP
to communicate with ntpd (default on Windows)";
112
Open an unconnected
UDP
association to ntpd (the default
180
Note that since NTP is a
UDP
protocol
/src/external/mit/libuv/dist/include/
uv.h
178
XX(
UDP
,
udp
) \
650
*
UDP
support.
686
* This sets IP_RECVERR for IPv4 and IPV6_RECVERR for IPv6
UDP
sockets on
/src/external/bsd/ipf/dist/
HISTORY
36
3546247
UDP
hardware checksum offload not recognised
764
fixed NAT handling of non-TCP/
UDP
packets, esp. for ICMP errors returned.
1003
calculate correct MIN size of packet to log for
UDP
- Marc Boucher
1237
NAT lookups are still incorrect, matching non-TCP/
UDP
with TCP/
UDP
1423
* Make ipnat use "tcp/
udp
" instead of "tcpudp"
1424
* Print out "tcp/
udp
" properly
1425
* ipnat "portmap tcp" matches "portmap
udp
" when adding/removing
1452
protocol (tcp/
udp
/tcpudp) to rdr output - Carson Gaspar (carson@lehman.com)
1581
make NAT recalculate
UDP
checksums (rather than setting them to 0)
[
all
...]
/src/external/bsd/nsd/dist/doc/
differences.tex
51
These queries are sent over
UDP
to a name server set up to serve a
Completed in 37 milliseconds
1
2
Indexes created Sun Sep 20 00:26:38 UTC 2026