Searched refs:proto (Results 201 - 225 of 462) sorted by relevance

1234567891011>>

/freebsd-10.0-release/usr.bin/getent/
H A Dgetent.c501 char *proto; local
518 proto = strchr(argv[i], '/');
519 if (proto != NULL)
520 *proto++ = '\0';
522 se = getservbyport(htons((u_short)id), proto);
524 se = getservbyname(argv[i], proto);
/freebsd-10.0-release/usr.sbin/ppp/
H A Dhdlc.c142 struct mbuf *bp, int pri __unused, u_short *proto __unused)
288 hdlc_Protocol2Nam(u_short proto) argument
293 if (proto >= protocols[f].from && proto <= protocols[f].to)
295 else if (proto < protocols[f].from)
302 u_short *proto __unused)
H A Dlqr.c48 #include "proto.h"
418 int pri __unused, u_short *proto)
445 * We're also expecting to be stacked *before* the likes of the proto and
454 p->hdlc.lqm.ifOutOctets += acf_WrapperOctets(&l->lcp, *proto);
466 p->hdlc.lqm.ifOutOctets += proto_WrapperOctets(&l->lcp, *proto);
477 if (*proto == PROTO_LQR) {
514 struct mbuf *bp, u_short *proto)
522 if (*proto == PROTO_LQR)
417 lqr_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp, int pri __unused, u_short *proto) argument
513 lqr_LayerPull(struct bundle *b __unused, struct link *l __unused, struct mbuf *bp, u_short *proto) argument
H A DMakefile11 proto.c route.c server.c sig.c slcompress.c sync.c systems.c tcp.c \
H A Dccp.h121 #define fsm2ccp(fp) (fp->proto == PROTO_CCP ? (struct ccp *)fp : NULL)
H A Dfsm.h103 u_short proto; /* Protocol number */ member in struct:fsm
/freebsd-10.0-release/contrib/binutils/bfd/doc/
H A DMakefile.am204 $(srcdir)/proto.str \
215 ./$(MKDOC) -i -f $(srcdir)/proto.str < $$file >> $@ ;; \
223 $(srcdir)/proto.str \
234 ./$(MKDOC) -i -f $(srcdir)/proto.str < $$file >> $@ ;; \
257 $(srcdir)/proto.str \
269 ./$(MKDOC) -f $(srcdir)/proto.str < $$file >> $@ ;; \
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_setup.c394 char proto; local
399 proto = *command_character;
403 if (*tmp == proto)
/freebsd-10.0-release/contrib/expat/tests/benchmark/
H A Dbenchmark.c8 #include <proto/expat.h>
/freebsd-10.0-release/lib/libc/net/
H A Dgetprotoname.c147 if (getprotobyname_r(name, &pd->proto, pd->data, sizeof(pd->data),
H A Dnetdb_private.h114 struct protoent proto; member in struct:protodata
/freebsd-10.0-release/sys/i386/ibcs2/
H A Dibcs2_socksys.h115 int proto; member in struct:socknewproto
/freebsd-10.0-release/sys/netipsec/
H A Dkeydb.h57 u_int16_t proto; /* IPPROTO_ESP or IPPROTO_AH */ member in struct:secasindex
H A Dkey.c393 (idx)->proto = (p); \
668 u_int8_t proto,
684 printf("spi %u proto %u dir %u\n", spi, proto, dir);
696 if (sp->spidx.ul_proto != proto)
997 satype = key_proto2satype(d->sah->saidx.proto);
1080 u_int proto,
1128 if (proto != sav->sah->saidx.proto)
1469 "%s: invalid proto typ
666 key_allocsp2(u_int32_t spi, union sockaddr_union *dst, u_int8_t proto, u_int dir, const char* where, int tag) argument
1078 key_allocsa( union sockaddr_union *dst, u_int proto, u_int32_t spi, const char* where, int tag) argument
4603 key_proto2satype(u_int16_t proto) argument
4643 u_int8_t proto; local
4965 u_int16_t proto; local
5254 u_int16_t proto; local
5585 u_int16_t proto; local
5722 key_delete_all(struct socket *so, struct mbuf *m, const struct sadb_msghdr *mhp, u_int16_t proto) argument
5853 u_int16_t proto; local
6551 u_int16_t proto; local
7032 u_int16_t proto; local
7114 u_int16_t proto; local
[all...]
/freebsd-10.0-release/usr.bin/fstat/
H A Dfstat.c357 if ((pe = getprotobynumber(sock.proto)) != NULL)
360 printf(" %d", sock.proto);
361 if (sock.proto == IPPROTO_TCP ) {
389 printf(" %d %lx", sock.proto, (u_long)sock.so_addr);
/freebsd-10.0-release/sys/netpfil/pf/
H A Dpf.c917 if (sk->proto == IPPROTO_TCP &&
1091 sk->proto = pd->proto;
1752 u_int8_t proto, dir; local
1757 proto = skw ? skw->proto : (sks ? sks->proto : 0);
1760 switch (proto) {
1780 printf("%u", skw->proto);
1807 if (proto
[all...]
/freebsd-10.0-release/sys/contrib/altq/altq/
H A Daltq_subr.c1108 * if port info is required, or proto is required
1155 u_int8_t proto; local
1181 proto = ip->ip_p;
1195 switch (proto) {
1203 fin->fi_proto = proto;
1215 fin->fi_proto = proto;
1223 proto = opt6->opt6_nxt;
1233 fin->fi_proto = proto;
1253 u_int8_t proto; local
1272 proto
[all...]
/freebsd-10.0-release/sys/dev/usb/storage/
H A Dumass.c423 uint32_t proto; member in struct:umass_probe_proto
783 uint32_t proto = umass_get_proto(uaa->iface); local
791 proto &= ~UMASS_PROTO_WIRE;
792 proto |= UMASS_PROTO_BBB;
794 proto &= ~UMASS_PROTO_WIRE;
795 proto |= UMASS_PROTO_CBI;
797 proto &= ~UMASS_PROTO_WIRE;
798 proto |= UMASS_PROTO_CBI_I;
802 proto &= ~UMASS_PROTO_COMMAND;
803 proto |
[all...]
/freebsd-10.0-release/contrib/amd/amd/
H A Dops_nfs.c770 int proto = AMU_TYPE_NONE; local
802 proto = AMU_TYPE_UDP;
804 proto = AMU_TYPE_TCP;
805 if (proto != AMU_TYPE_NONE) {
806 if (gopt.amfs_auto_timeo[proto] > 0)
808 MNTTAB_OPT_TIMEO, gopt.amfs_auto_timeo[proto]);
809 if (gopt.amfs_auto_retrans[proto] > 0)
811 MNTTAB_OPT_RETRANS, gopt.amfs_auto_retrans[proto]);
/freebsd-10.0-release/contrib/ipfilter/tools/
H A Dipnat.c398 int proto; local
401 proto = nat.nat_pr[1];
403 proto = nat.nat_pr[0];
404 printaps(nat.nat_aps, opts, proto);
612 int proto; local
615 proto = nat.nat_pr[1];
617 proto = nat.nat_pr[0];
618 printaps(nat.nat_aps, opts, proto);
/freebsd-10.0-release/contrib/libpcap/
H A Dpcap-sita.c426 char *proto; local
451 case DLT_EN10MB: proto = "lo"; port = nonUnified_port_num(u, IOPportnum); break;
452 default: proto = "???"; port = unified_port_num(u, IOPportnum); break;
457 case DLT_EN10MB: proto = "eth"; port = nonUnified_port_num(u, IOPportnum); break;
458 default: proto = "???"; port = unified_port_num(u, IOPportnum); break;
463 case DLT_SITA: proto = "wan"; port = unified_port_num(u, IOPportnum); break;
464 default: proto = "???"; port = unified_port_num(u, IOPportnum); break;
468 sprintf(buf, "%s_%s", proto, port); /* compose the user's name for that IOP port name */
/freebsd-10.0-release/contrib/wpa/src/l2_packet/
H A Dl2_packet_privsep.c62 int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto, argument
73 io[2].iov_base = &proto;
/freebsd-10.0-release/crypto/heimdal/appl/kf/
H A Dkf.c125 proto (int sock, const char *hostname, const char *service, function
315 return proto (s, hostname, service, message, len);
H A Dkfd.c123 proto (int sock, const char *service) function
288 return proto (STDIN_FILENO, service);
/freebsd-10.0-release/crypto/heimdal/appl/test/
H A Dgssapi_client.c100 proto (int sock, const char *hostname, const char *service) function
272 return client_doit (argv[argc], port, service, proto);

Completed in 150 milliseconds

1234567891011>>