Searched refs:tcp (Results 51 - 75 of 455) sorted by relevance

1234567891011>>

/freebsd-current/tools/test/stress2/misc/
H A Dcrossmp2.sh43 mount -t nfs -o tcp -o nfsv3 -o retrycnt=1 -o intr,soft,timeout=1 \
73 mount -t nfs -o tcp -o nfsv3 -o retrycnt=3 \
H A Dnfs.sh40 mount -t nfs -o tcp -o retrycnt=3 -o intr,soft -o rw $nfs_export $mntpoint
H A Dnfssillyrename.sh44 mount -t nfs -o tcp -o retrycnt=3 -o soft -o rw $nfs_export $mntpoint ||
H A Dpathconf.sh46 mount -t nfs -o tcp -o retrycnt=3 -o intr,soft -o rw $nfs_export $mp/nfs
H A Dtmpfs18.sh30 # "[tcp] 127.0.0.1:/mnt: Permission denied" seen, when tmpfs options are
49 mount -t nfs -o tcp -o rw,retrycnt=1 127.0.0.1:$mntpoint $m2 || s=2
H A Djexec.sh41 mount -t nfs -o tcp -o retrycnt=3 -o intr,soft -o rw $nfs_export $mntpoint
H A Dcrossmp6.sh50 mount -t nfs -o tcp -o nfsv3 -o retrycnt=1 -o soft,timeout=1 \
66 mount -t nfs -o tcp -o nfsv3 -o retrycnt=1 -o soft,timeout=1 \
89 mount -t nfs -o tcp -o nfsv3 -o retrycnt=3 \
H A Dlockd.sh40 mount -t nfs -o tcp -o nfsv3 -o retrycnt=1 -o soft,timeout=1 \
H A Dnfs13.sh30 # "[tcp] 127.0.0.1:/mnt: Permission denied" seen.
51 mount -t nfs -o tcp -o rw,retrycnt=1 127.0.0.1:$mntpoint $m2 || s=2
H A Dnfs14.sh50 mount -t nfs -o tcp -o retrycnt=3 -o soft \
H A Dnfs3.sh41 mount -t nfs -o tcp -o retrycnt=3 -o intr,soft -o rw $nfs_export $mntpoint
H A Dnfs8.sh42 mount -t nfs -o nfsv3,tcp,nolockd -o retrycnt=3 -o intr,soft -o rw \
/freebsd-current/contrib/tcsh/
H A Dsh.c246 char *tcp, *ttyn; local
605 if (((tcp = getenv("HOME")) != NULL && strcmp (tcp, "/data") != 0)
606 || (tcp = getenv("EXTERNAL_STORAGE")) != NULL) {
607 cp = quote(SAVE(tcp));
612 if ((tcp = getenv("HOME")) != NULL)
613 cp = quote(SAVE(tcp));
701 if ((tcp = getenv("SYSTYPE")) == NULL)
702 tcp = "bsd4.3";
703 tsetenv(STRSYSTYPE, quote(str2short(tcp)));
[all...]
/freebsd-current/crypto/heimdal/appl/push/
H A Dpush_locl.h77 #include <netinet/tcp.h>
/freebsd-current/tests/sys/netinet6/
H A Dexthdr.py84 tcp = packet.getlayer(sp.TCP)
85 if not tcp:
88 if tcp.flags & 0x04:
89 #tcp.display()
244 tcp = sp.TCP(dport=4567, sport=7654)
246 for ulp in [ udp, tcp ]:
258 elif ulp == tcp:
/freebsd-current/usr.sbin/ppp/
H A Dncp.c101 ncp->cfg.urgent.tcp.port = (u_short *)malloc(NDEFTCPPORTS * sizeof(u_short));
102 if (ncp->cfg.urgent.tcp.port == NULL) {
104 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp.maxports = 0;
106 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp.maxports = NDEFTCPPORTS;
107 memcpy(ncp->cfg.urgent.tcp.port, default_urgent_tcp_ports,
134 if (ncp->cfg.urgent.tcp.maxports) {
135 ncp->cfg.urgent.tcp.nports = ncp->cfg.urgent.tcp
[all...]
/freebsd-current/sys/netpfil/pf/
H A Dpf_syncookies.c85 #include <netinet/tcp.h>
301 mss = max(V_tcp_mssdflt, pf_get_mss(m, off, pd->hdr.tcp.th_off, pd->af));
304 iss, ntohl(pd->hdr.tcp.th_seq) + 1, TH_SYN|TH_ACK, 0, mss,
321 seq = ntohl(pd->hdr.tcp.th_seq) - 1;
322 ack = ntohl(pd->hdr.tcp.th_ack) - 1;
346 ack = ntohl(pd->hdr.tcp.th_ack) - 1;
481 wscale = pf_get_wscale(m, off, pd->hdr.tcp.th_off, pd->af);
489 hash = pf_syncookie_mac(pd, cookie, ntohl(pd->hdr.tcp.th_seq));
511 seq = ntohl(pd->hdr.tcp.th_seq) - 1;
512 ack = ntohl(pd->hdr.tcp
[all...]
H A Dpf_osfp.c32 #include <netinet/tcp.h>
71 const struct tcphdr *tcp)
78 pd->proto != IPPROTO_TCP || (tcp->th_off << 2) < sizeof(*tcp))
88 if (!pf_pull_hdr(m, off, hdr, tcp->th_off << 2, NULL, NULL,
95 pf_osfp_fingerprint_hdr(const struct ip *ip, const struct ip6_hdr *ip6, const struct tcphdr *tcp) argument
106 if ((tcp->th_flags & (TH_SYN|TH_ACK)) != TH_SYN)
134 fp.fp_wsize = ntohs(tcp->th_win);
136 cnt = (tcp->th_off << 2) - sizeof(*tcp);
70 pf_osfp_fingerprint(struct pf_pdesc *pd, struct mbuf *m, int off, const struct tcphdr *tcp) argument
[all...]
/freebsd-current/sys/netinet/cc/
H A Dcc_htcp.c43 * based on the Internet Draft "draft-leith-tcp-htcp-06.txt" by Leith and
68 #include <netinet/tcp.h>
256 INP_WLOCK_ASSERT(tptoinpcb(ccv->ccvc.tcp));
287 mss = tcp_fixed_maxseg(ccv->ccvc.tcp);
328 pipe = tcp_compute_pipe(ccv->ccvc.tcp);
386 pipe = tcp_compute_pipe(ccv->ccvc.tcp);
454 (tcp_get_srtt(ccv->ccvc.tcp, TCP_TMR_GRANULARITY_TICKS) << HTCP_SHIFT) /
505 if ((tcp_get_srtt(ccv->ccvc.tcp, TCP_TMR_GRANULARITY_TICKS) < htcp_data->minrtt ||
508 htcp_data->minrtt = tcp_get_srtt(ccv->ccvc.tcp, TCP_TMR_GRANULARITY_TICKS);
514 if (tcp_get_srtt(ccv->ccvc.tcp, TCP_TMR_GRANULARITY_TICK
[all...]
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dip_pptp_pxy.c281 tcphdr_t *tcp; local
286 tcp = fin->fin_dp;
287 dlen = fin->fin_dlen - (TCP_OFF(tcp) << 2);
288 start = ntohl(tcp->th_seq);
290 off = (char *)tcp - (char *)fin->fin_ip + (TCP_OFF(tcp) << 2) +
313 msg = (char *)fin->fin_dp + (TCP_OFF(tcp) << 2);
507 tcphdr_t *tcp; local
517 tcp = (tcphdr_t *)fin->fin_dp;
518 if ((tcp
[all...]
H A Dip_proxy.c73 #include <netinet/tcp.h>
647 /* tcp(I) - pointer to TCP/UDP header */
656 ipf_proxy_ok(fr_info_t *fin, tcphdr_t *tcp, ipnat_t *np) argument
664 if ((tcp == NULL) && dport)
874 tcphdr_t *tcp = NULL; local
929 tcp = (tcphdr_t *)fin->fin_dp;
995 if (tcp != NULL) {
998 u_short sum = ntohs(tcp->th_sum);
1000 tcp->th_sum = htons(sum);
1002 tcp
1123 tcphdr_t *tcp; local
[all...]
/freebsd-current/sys/netgraph/
H A Dng_tcpmss.c59 #include <netinet/tcp.h>
276 struct tcphdr *tcp; local
325 tcp = (struct tcphdr *)((caddr_t )ip + iphlen);
328 tcphlen = tcp->th_off << 2;
333 if (!(tcp->th_flags & TH_SYN) || tcphlen == sizeof(struct tcphdr))
341 tcp = (struct tcphdr *)((caddr_t )ip + iphlen);
346 if (correct_mss(tcp, tcphlen, priv->stats.maxMSS,
/freebsd-current/sbin/nvmecontrol/
H A Dconnect.c40 .transport = "tcp",
56 params->tcp.pda = 0;
57 params->tcp.header_digests = opt.header_digests;
58 params->tcp.data_digests = opt.data_digests;
60 params->tcp.maxr2t = 1;
121 switch (entry->tsas.tcp.sectype) {
189 if (strcasecmp(opt.transport, "tcp") == 0) {
221 if (strcasecmp(opt.transport, "tcp") == 0) {
/freebsd-current/usr.sbin/nvmfd/
H A Ddiscovery.c109 aparams.tcp.pda = 0;
110 aparams.tcp.header_digests = header_digests;
111 aparams.tcp.data_digests = data_digests;
112 aparams.tcp.maxr2t = 1;
113 aparams.tcp.maxh2cdata = 256 * 1024;
294 qparams.tcp.fd = s;
/freebsd-current/sys/fs/nfsclient/
H A Dnfs_clcomsubs.c61 char *mcp, *tcp; local
123 tcp = (char *)uiop->uio_iov->iov_base;
124 tcp += uiosiz;
125 uiop->uio_iov->iov_base = (void *)tcp;
169 char *mcp, *tcp; local
243 tcp = (char *)uiop->uio_iov->iov_base;
244 tcp += uiosiz;
245 uiop->uio_iov->iov_base = (void *)tcp;

Completed in 241 milliseconds

1234567891011>>