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

  /src/usr.bin/systat/
systat.h 57 #define TCP 0x1
  /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
72 # define TCP (0x0000000000706374llu)
75 # define TCP (0x7463700000000000llu)
102 if (key == TCP)
217 (void)protocol; // all supported services map to tcp and udp
  /src/tests/usr.sbin/inetd/
t_inetd.c 51 #define TCP 6
67 "uses UDP/TCP ports 5432-5439 with localhost.");
197 /* Run localhost tcp echo, return true if successful, false if timeout/disconnect */
203 int tcp; local
206 tcp = create_socket("127.0.0.1", port, SOCK_STREAM, TCP, 1, &remote);
207 CHECK_ERROR(connect(tcp, (const struct sockaddr *)&remote,
209 CHECK_ERROR(send(tcp, buffer, sizeof(buffer), 0));
210 count = recv(tcp, buffer, sizeof(buffer), 0);
  /src/external/mpl/bind/dist/bin/tests/
test_client.c 42 TCP,
50 static const char *protocols[] = { "udp", "tcp",
382 case TCP:
test_server.c 33 typedef enum { UDP, TCP, DOT, HTTPS, HTTP } protocol_t;
35 static const char *protocols[] = { "udp", "tcp", "dot", "https", "http-plain" };
252 case TCP:
  /src/external/mit/libuv/dist/test/
task.h 82 TCP = 0,
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
asyncserver.py 104 A generic asynchronous server which may handle UDP and/or TCP traffic.
253 TCP = enum.auto()
419 received by the server (TCP only).
428 logging.info("Waiting %.1fs before closing TCP connection", self.delay)
435 Base class for TCP connection handlers.
437 An installed connection handler is called when a new TCP connection is
516 # a TCP transport (which in practice means removing the client socket
521 # by keeping a reference to each incoming TCP connection to protect its
523 # prevents AsyncDnsServer from closing any of the ignored TCP
555 "Waiting %.1fs before closing TCP connection from %s", self.delay, pee
    [all...]
  /src/external/mpl/bind/dist/lib/ns/
query.c 114 /*% Is TCP? */
115 #define TCP(c) (((c)->attributes & NS_CLIENTATTR_TCP) != 0)
589 if (TCP(client)) {
2804 if (!TCP(client)) {
5800 if (!TCP(qctx->client) &&
5981 /* Track TCP vs UDP stats per zone */
5982 if (TCP(qctx->client)) {
6600 if (!TCP(client)) {
7227 TCP(qctx->client), qctx->client->message->rdclass,
7355 !TCP(qctx->client)) &
    [all...]

Completed in 35 milliseconds