Searched refs:tcp (Results 201 - 225 of 285) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/netgraph/
H A Dng_nat.c42 #include <netinet/tcp.h>
/freebsd-9.3-release/sys/netinet/libalias/
H A Dalias_proxy.c34 usually tcp port 80, are redirected to a proxy server.
40 beginning of a tcp stream, or inclusion of an optional field
71 #include <netinet/tcp.h>
187 se = getservbyname(s, "tcp");
298 /* Compute pointer to tcp header */
391 fprintf(stdout, "tcp cksum 1 = %x\n", (u_int) TcpChecksum(pip));
447 fprintf(stdout, "tcp cksum 2 = %x\n", (u_int) TcpChecksum(pip));
533 * [proto tcp|udp]
726 if (strcmp(token, "tcp") == 0)
/freebsd-9.3-release/sys/netinet/
H A Dtcp_hostcache.c31 * The tcp_hostcache moves the tcp-specific cached metrics from the routing
94 #include <netinet/tcp.h>
189 TUNABLE_INT_FETCH("net.inet.tcp.hostcache.hashsize",
197 TUNABLE_INT_FETCH("net.inet.tcp.hostcache.bucketlimit",
202 TUNABLE_INT_FETCH("net.inet.tcp.hostcache.cachelimit",
H A Dtcp_lro.c54 #include <netinet/tcp.h>
367 /* We expect a contiguous header [eh, ip, tcp]. */
H A Dtcp_sack.c112 #include <netinet/tcp.h>
H A Dtoecore.c59 #include <netinet/tcp.h>
H A Dtcp_var.h36 #include <netinet/tcp.h>
42 * Kernel variables for tcp.
53 struct tcphdr *tqe_th; /* a pointer to tcp header */
99 * Tcp control block, one per tcp; fields:
224 #define TF_NOOPT 0x000008 /* don't use tcp options */
588 #define TCPCTL_DROP 15 /* drop tcp connection */
619 VNET_DECLARE(struct tcpstat, tcpstat); /* tcp statistics */
/freebsd-9.3-release/sys/netinet6/
H A Din6_proto.c103 #include <netinet/tcp.h>
/freebsd-9.3-release/sys/netpfil/ipfw/
H A Dip_fw_nat.c49 #include <netinet/tcp.h>
238 * tcp packet data[2], mark them for later fix too.
247 * [2] when libalias modifies tcp's data content, full TCP
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_trantcp.c52 #include <netinet/tcp.h>
/freebsd-9.3-release/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp.h35 #include <netinet/tcp.h>
/freebsd-9.3-release/usr.bin/sockstat/
H A Dsockstat.c46 #include <netinet/tcp.h>
74 static const char *default_protos[] = {"tcp", "udp", "divert" };
273 varname = "net.inet.tcp.pcblist";
274 protoname = "tcp";
328 protoname = xtp->xt_tp.t_flags & TF_TOE ? "toe" : "tcp";
/freebsd-9.3-release/usr.bin/systat/
H A Dnetstat.c59 #include <netinet/tcp.h>
105 short ni_state; /* tcp state */
139 "net.inet.tcp.pcblist",
223 "tcp");
229 "tcp");
322 xtp->xt_tp.t_state, "tcp");
516 if (streq(p->ni_proto, "tcp")) {
/freebsd-9.3-release/crypto/openssl/
H A De_os.h237 # include <tcp.h>
/freebsd-9.3-release/crypto/openssh/contrib/caldera/
H A Dopenssh.spec181 --with-tcp-wrappers \
/freebsd-9.3-release/sys/dev/cxgbe/
H A Dt4_sge.c52 #include <netinet/tcp.h>
3399 struct tcphdr *tcp; local
3429 tcp = (struct tcphdr *)(ip6 + 1);
3432 V_LSO_TCPHDR_LEN(tcp->th_off);
3441 tcp = (void *)((uintptr_t)ip + ip->ip_hl * 4);
3443 V_LSO_TCPHDR_LEN(tcp->th_off);
/freebsd-9.3-release/sys/dev/virtio/network/
H A Dif_vtnet.c70 #include <netinet/tcp.h>
1982 struct tcphdr *tcp, tcphdr; local
1988 tcp = &tcphdr;
1990 tcp = (struct tcphdr *)(m->m_data + offset);
1992 hdr->hdr_len = offset + (tcp->th_off << 2);
1997 if (tcp->th_flags & TH_CWR) {
2001 * the net.inet.tcp.ecn.enable sysctl knob. The default is off.
/freebsd-9.3-release/sys/contrib/pf/net/
H A Dpf.c113 #include <netinet/tcp.h>
2356 /* maximum segment size tcp option */
2998 if (pd->hdr.tcp == NULL)
3000 sport = pd->hdr.tcp->th_sport;
3001 dport = pd->hdr.tcp->th_dport;
3311 MD5Update(&ctx, (char *)&pd->hdr.tcp->th_sport, sizeof(u_short));
3312 MD5Update(&ctx, (char *)&pd->hdr.tcp->th_dport, sizeof(u_short));
3349 struct tcphdr *th = pd->hdr.tcp;
3578 /* tcp/udp only. port_op always 0 in other cases */
3585 /* tcp/ud
[all...]
/freebsd-9.3-release/sys/dev/cxgb/
H A Dcxgb_sge.c68 #include <netinet/tcp.h>
1349 /* sizeof(*eh) + sizeof(*ip) + sizeof(*tcp) */
1464 struct tcphdr *tcp; local
1479 /* Make sure that ether, ip, tcp headers are all in m0 */
1505 tcp = (struct tcphdr *)(ip + 1);
1515 tcp = (struct tcphdr *)(ip6 + 1);
1519 tso_info |= V_LSO_TCPHDR_WORDS(tcp->th_off);
/freebsd-9.3-release/sys/dev/bge/
H A Dif_bge.c99 #include <netinet/tcp.h>
5122 struct tcphdr *tcp; local
5143 tcp = (struct tcphdr *)(mtod(m, char *) + poff);
5144 m = m_pullup(m, poff + (tcp->th_off << 2));
5154 ip->ip_len = htons(*mss + (ip->ip_hl << 2) + (tcp->th_off << 2));
5156 tcp = (struct tcphdr *)(mtod(m, char *) + poff);
5157 tcp->th_sum = 0;
5165 hlen = ((ip->ip_hl << 2) + (tcp->th_off << 2)) >> 2;
/freebsd-9.3-release/contrib/libpcap/
H A Dpcap-dos.c53 #include <tcp.h>
/freebsd-9.3-release/contrib/netcat/
H A Dnetcat.c49 #include <netinet/tcp.h>
511 uflag ? "udp" : "tcp");
517 uflag ? "udp" : "tcp",
675 uflag ? "udp" : "tcp");
/freebsd-9.3-release/contrib/tcsh/
H A Dtc.os.c86 char *tcp; local
/freebsd-9.3-release/crypto/openssh/
H A Dmisc.c46 #include <netinet/tcp.h>
/freebsd-9.3-release/lib/libc/rpc/
H A Dsvc_vc.c42 * a tcp rendezvouser (a listner and connection establisher)
43 * and a record/tcp stream.
56 #include <netinet/tcp.h>
113 * Creates, registers, and returns a (rpc) tcp based transporter.
453 * reads data from the tcp or uip connection.
519 * writes data to the tcp connection.

Completed in 510 milliseconds

1234567891011>>