HomeSort by: relevance | last modified time | path
    Searched defs:UDP (Results 1 - 7 of 7) sorted by relevancy

  /src/usr.bin/systat/
systat.h 58 #define UDP 0x2
  /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/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/
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/mit/libuv/dist/test/
task.h 83 UDP,
  /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()
780 Queries are currently always forwarded via UDP.
833 "Waiting %.1fs before forwarding %s query from %s to %s over UDP",
842 "Forwarding %s query from %s to %s over UDP",
860 "Relaying UDP response from %s to %s over %s",
1218 logging.debug("Received UDP message: %s", wire.hex())
1222 responses = self._handle_query(wire, socket, peer, DnsProtocol.UDP)
1224 logging.debug("Sending UDP message: %s", response.hex()
    [all...]

Completed in 81 milliseconds