Searched refs:proto (Results 101 - 125 of 608) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-sharp/
H A DServiceResolver.cs32 internal delegate void ServiceResolverCallback (IntPtr resolver, int iface, Protocol proto, argument
44 private Protocol proto; field in class:Avahi.ServiceResolver
56 private static extern IntPtr avahi_service_resolver_new (IntPtr client, int iface, Protocol proto, argument
119 public ServiceResolver (Client client, int iface, Protocol proto, string name, argument
124 this.proto = proto;
150 handle = avahi_service_resolver_new (client.Handle, iface, proto,
171 private void OnServiceResolverCallback (IntPtr resolver, int iface, Protocol proto, argument
179 info.Protocol = proto;
187 if (proto
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dxt_multiport.c154 check(u_int16_t proto, argument
160 return (proto == IPPROTO_TCP || proto == IPPROTO_UDP
161 || proto == IPPROTO_UDPLITE
162 || proto == IPPROTO_SCTP || proto == IPPROTO_DCCP)
181 return check(ip->proto, ip->invflags, multiinfo->flags,
195 return check(ip->proto, ip->invflags, multiinfo->flags,
209 return check(ip->proto, ip->invflags, multiinfo->flags,
223 return check(ip->proto, i
[all...]
H A Dnf_conntrack_proto.c185 int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto) argument
189 if (proto->l3proto >= AF_MAX)
193 if (nf_ct_l3protos[proto->l3proto] != &nf_conntrack_l3proto_generic) {
198 ret = nf_ct_l3proto_register_sysctl(proto);
202 rcu_assign_pointer(nf_ct_l3protos[proto->l3proto], proto);
210 void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto) argument
212 BUG_ON(proto->l3proto >= AF_MAX);
215 BUG_ON(nf_ct_l3protos[proto->l3proto] != proto);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wan/
H A Dhdlc_ppp.c91 static struct hdlc_proto proto = { variable in typeref:struct:hdlc_proto
107 if (dev_to_hdlc(dev)->proto != &proto)
125 result = attach_hdlc_protocol(dev, &proto, NULL,
141 register_hdlc_protocol(&proto);
149 unregister_hdlc_protocol(&proto);
H A Dhdlc_raw_eth.c48 static struct hdlc_proto proto = { variable in typeref:struct:hdlc_proto
67 if (dev_to_hdlc(dev)->proto != &proto)
99 result = attach_hdlc_protocol(dev, &proto, NULL,
122 register_hdlc_protocol(&proto);
130 unregister_hdlc_protocol(&proto);
H A Dhdlc_x25.c183 static struct hdlc_proto proto = { variable in typeref:struct:hdlc_proto
198 if (dev_to_hdlc(dev)->proto != &proto)
214 if ((result = attach_hdlc_protocol(dev, &proto,
229 register_hdlc_protocol(&proto);
237 unregister_hdlc_protocol(&proto);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dbcmevent.c23 #include <proto/ethernet.h>
24 #include <proto/bcmeth.h>
25 #include <proto/bcmevent.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dnfs4_mount.h51 int proto; /* 1 */ member in struct:nfs4_mount_data
H A Dif_pppox.h279 } proto; member in struct:pppox_sock
282 #define pppoe_dev proto.pppoe.dev
283 #define pppoe_ifindex proto.pppoe.ifindex
284 #define pppoe_pa proto.pppoe.pa
285 #define pppoe_relay proto.pppoe.relay
286 #define pptp_dev proto.pptp.dev
287 #define pptp_ifindex proto.pptp.ifindex
288 #define pptp_pa proto.pptp.pa
289 #define pptp_relay proto.pptp.relay
H A Dif_pppox_v26.h156 } proto; member in struct:pppox_sock
176 } proto; member in struct:pppox_opt
180 #define pppoe_dev proto.pppoe.dev
181 #define pppoe_pa proto.pppoe.pa
182 #define pppoe_relay proto.pppoe.relay
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/lib/
H A Dchecksum.c46 unsigned short proto,
51 (__force u64)sum + ((len + proto) << 8));
56 unsigned short proto,
62 (__force u64)sum + ((len + proto) << 8);
44 csum_tcpudp_magic(__be32 saddr, __be32 daddr, unsigned short len, unsigned short proto, __wsum sum) argument
54 csum_tcpudp_nofold(__be32 saddr, __be32 daddr, unsigned short len, unsigned short proto, __wsum sum) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Ddeflate.c312 int rlen, proto, r; local
318 proto = rptr[0];
319 if ((proto & 1) == 0)
320 proto = (proto << 8) + rptr[1];
321 if (proto > 0x3fff || proto == 0xfd || proto == 0xfb)
345 if (proto <= 0xff)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dpop3.c248 struct pop3_conn *pop3c = &conn->proto.pop3c;
260 struct FTP *pop3 = conn->data->state.proto.pop3;
263 result = Curl_pp_sendf(&conn->proto.pop3c.pp, "USER %s",
278 return Curl_pp_getsock(&conn->proto.pop3c.pp, socks, numsocks);
325 struct FTP *pop3 = data->state.proto.pop3;
335 result = Curl_pp_sendf(&conn->proto.pop3c.pp, "PASS %s",
369 struct FTP *pop3 = data->state.proto.pop3;
370 struct pop3_conn *pop3c = &conn->proto.pop3c;
412 struct FTP *pop3 = data->state.proto.pop3;
413 struct pop3_conn *pop3c = &conn->proto
[all...]
H A Dsmtp.c226 struct smtp_conn *smtpc = &conn->proto.smtpc;
286 struct smtp_conn *smtpc = &conn->proto.smtpc;
320 struct smtp_conn *smtpc = &conn->proto.smtpc;
339 struct smtp_conn *smtpc = &conn->proto.smtpc;
409 struct smtp_conn *smtpc = &conn->proto.smtpc;
488 return Curl_pp_getsock(&conn->proto.smtpc.pp, socks, numsocks);
536 struct smtp_conn *smtpc = &conn->proto.smtpc;
571 result = Curl_pp_sendf(&conn->proto.smtpc.pp, "STARTTLS");
623 result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", plainauth);
656 result = Curl_pp_sendf(&conn->proto
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/i4l/
H A Disdn_ppp.c28 static int isdn_ppp_fill_rq(unsigned char *buf, int len, int proto, int slot);
31 struct sk_buff *skb, int proto);
35 struct ippp_struct *,struct ippp_struct *,int *proto);
37 struct sk_buff *skb,int proto);
38 static struct sk_buff *isdn_ppp_compress(struct sk_buff *skb_in,int *proto,
45 static void isdn_ppp_ccp_xmit_reset(struct ippp_struct *is, int proto,
703 isdn_ppp_fill_rq(unsigned char *buf, int len, int proto, int slot) argument
727 nbuf[2] = proto >> 8;
728 nbuf[3] = proto & 0xff;
800 int proto; local
946 int proto; local
972 int proto; local
1024 isdn_ppp_push_higher(isdn_net_dev * net_dev, isdn_net_local * lp, struct sk_buff *skb, int proto) argument
1219 unsigned int proto = PPP_IP; /* 0x21 */ local
1463 u_int16_t proto; local
1869 int proto; local
2194 isdn_ppp_ccp_xmit_reset(struct ippp_struct *is, int proto, unsigned char code, unsigned char id, unsigned char *data, int len) argument
2499 isdn_ppp_decompress(struct sk_buff *skb,struct ippp_struct *is,struct ippp_struct *master, int *proto) argument
2582 isdn_ppp_compress(struct sk_buff *skb_in,int *proto, struct ippp_struct *is,struct ippp_struct *master,int type) argument
2642 isdn_ppp_receive_ccp(isdn_net_dev *net_dev, isdn_net_local *lp, struct sk_buff *skb,int proto) argument
2822 int proto, slot = lp->ppp_slot; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/expat-2.0.1/amiga/
H A Dstdlib.c26 #include <proto/exec.h>
27 #include <proto/utility.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/arcnet/
H A Dcapmode.c72 /* for cap mode, we only set the bcast proto if there's no better one */
136 memcpy(pktbuf, pkthdrbuf, ARC_HDR_SIZE+sizeof(pkt->soft.cap.proto));
137 memcpy(pktbuf+ARC_HDR_SIZE+sizeof(pkt->soft.cap.proto)+sizeof(int),
138 pkthdrbuf+ARC_HDR_SIZE+sizeof(pkt->soft.cap.proto),
139 sizeof(struct archdr)-ARC_HDR_SIZE-sizeof(pkt->soft.cap.proto));
231 lp->hw.copy_to_card(dev, bufnum, ofs, &pkt->soft.cap.proto,
232 sizeof(pkt->soft.cap.proto));
274 ackpkt->soft.cap.proto=0; /* using protocol 0 for acknowledge */
287 lp->outgoing.proto = NULL; /* We are always finished when in this protocol */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/netfilter/
H A Dnf_conntrack_l3proto.h28 * Try to fill in the third arg: nhoff is offset of l3 proto
35 * Invert the per-proto part of the tuple: ie. turn xmit into reply.
88 extern int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto);
89 extern void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Daddr-util.c41 ret_addr->proto = avahi_af_to_proto(sa->sa_family);
72 if (a->proto != AVAHI_PROTO_INET6)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/selinux/include/
H A Dxfrm.h38 struct avc_audit_data *ad, u8 proto);
53 struct avc_audit_data *ad, u8 proto)
52 selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb, struct avc_audit_data *ad, u8 proto) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_policy.c35 "[!] --proto proto match protocol (ah/esp/ipcomp)\n"
54 {.name = "proto", .id = O_PROTO, .type = XTTYPE_PROTOCOL,
142 if (e->match.proto)
144 "policy match: double --proto option");
145 e->proto = cb->val.protocol;
146 if (e->proto != IPPROTO_AH && e->proto != IPPROTO_ESP &&
147 e->proto != IPPROTO_COMP)
150 e->match.proto
241 print_proto(const char *prefix, uint8_t proto, int numeric) argument
[all...]
H A Dlibipt_MASQUERADE.c80 if (entry->ip.proto == IPPROTO_TCP
81 || entry->ip.proto == IPPROTO_UDP
82 || entry->ip.proto == IPPROTO_SCTP
83 || entry->ip.proto == IPPROTO_DCCP
84 || entry->ip.proto == IPPROTO_ICMP)
H A Dlibipt_REDIRECT.c81 if (entry->ip.proto == IPPROTO_TCP
82 || entry->ip.proto == IPPROTO_UDP
83 || entry->ip.proto == IPPROTO_SCTP
84 || entry->ip.proto == IPPROTO_DCCP
85 || entry->ip.proto == IPPROTO_ICMP)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/extensions/
H A Dlibip6t_policy.c36 "[!] --proto proto match protocol (ah/esp/ipcomp)\n"
81 .name = "proto",
258 if (e->match.proto)
260 "policy match: double --proto option");
262 e->proto = parse_protocol(argv[optind-1]);
263 if (e->proto != IPPROTO_AH && e->proto != IPPROTO_ESP &&
264 e->proto != IPPROTO_COMP)
267 e->match.proto
361 print_proto(char *prefix, u_int8_t proto, int numeric) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/netfilter/
H A Dipt_ECN.c60 tcph->ece == einfo->proto.tcp.ece) &&
62 tcph->cwr == einfo->proto.tcp.cwr)))
71 tcph->ece = einfo->proto.tcp.ece;
73 tcph->cwr = einfo->proto.tcp.cwr;
123 && (e->ip.proto != IPPROTO_TCP || (e->ip.invflags & XT_INV_PROTO))) {

Completed in 325 milliseconds

1234567891011>>