Searched refs:traffic (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-11-stable/sys/modules/netgraph/atm/atmbase/
H A DMakefile14 traffic.c uni_ie.c uni_msg.c
/freebsd-11-stable/contrib/netbsd-tests/net/net/
H A Dt_pktinfo.c44 static const char traffic[] = "foo"; variable
93 if (sendto(s, traffic, sizeof(traffic), 0,
104 char buf[sizeof(traffic)];
151 if (strcmp(traffic, buf) != 0)
152 ERRX2("Bad message '%s' != '%s'", buf, traffic);
/freebsd-11-stable/sys/contrib/ngatm/netnatm/msg/
H A Dtraffic.c29 * $Begemot: libunimsg/netnatm/msg/traffic.c,v 1.4 2004/07/08 08:22:05 brandt Exp $
73 const struct uni_ie_traffic *traffic,
190 * Now traffic IE
192 ft = traffic->h.present & fmask;
193 bt = traffic->h.present & bmask;
194 be = traffic->h.present & UNI_TRAFFIC_BEST_P;
195 ftag = (traffic->h.present & UNI_TRAFFIC_MOPT_P) && traffic->t.ftag;
196 btag = (traffic->h.present & UNI_TRAFFIC_MOPT_P) && traffic
72 uni_classify_traffic(const struct uni_ie_bearer *bearer, const struct uni_ie_traffic *traffic, enum uni_traffic_class *fclass, enum uni_traffic_class *bclass, char *ebuf, size_t ebufsiz) argument
[all...]
H A Duni_ie.h21 struct uni_ie_traffic traffic; member in union:uni_ieall
H A Duni_msg.h40 struct uni_ie_traffic traffic; member in struct:uni_connect
79 struct uni_ie_traffic traffic; member in struct:uni_setup
272 struct uni_ie_traffic traffic; member in struct:uni_modify_req
283 struct uni_ie_traffic traffic; member in struct:uni_modify_ack
H A Duni_msg.c336 if(msg->traffic.h.present & UNI_IE_PRESENT)
337 uni_print_ie_internal(UNI_IE_TRAFFIC, (union uni_ieall *)&msg->traffic, cx);
378 ret |= uni_check_ie(UNI_IE_TRAFFIC, (union uni_ieall *)&m->traffic, cx);
439 if((p->traffic.h.present & UNI_IE_PRESENT) &&
440 uni_encode_ie(UNI_IE_TRAFFIC, msg, (union uni_ieall *)&p->traffic, cx))
568 out->traffic.h = *hdr;
571 if(uni_decode_ie_body(UNI_IE_TRAFFIC, (union uni_ieall *)&out->traffic, msg, ielen, cx))
1082 if(msg->traffic.h.present & UNI_IE_PRESENT)
1083 uni_print_ie_internal(UNI_IE_TRAFFIC, (union uni_ieall *)&msg->traffic, cx);
1165 ret |= uni_check_ie(UNI_IE_TRAFFIC, (union uni_ieall *)&m->traffic, c
[all...]
H A Duni_ie.c967 uni_print_entry(cx, "traffic", "(");
968 for (i = 0; i < ie->u.traffic.len; i++) {
971 uni_printf(cx, "0x%02x", ie->u.traffic.traffic[i]);
1308 if (ie->u.traffic.len == 0 ||
1309 ie->u.traffic.len > UNI_CAUSE_TRAFFIC_N)
1371 APP_BUF(msg, ie->u.traffic.traffic, ie->u.traffic.len);
1514 while(ielen && ie->u.traffic
[all...]
H A Dunistruct.h597 D(TRAFFIC_UNSUP,0x49 /* 73*/, NONE, Q.2971, "Unsupported combination of traffic parameters") \
727 uint8_t traffic[UNI_CAUSE_TRAFFIC_N]; member in struct:uni_ie_cause::__anon8369::__anon8373
729 } traffic; member in union:uni_ie_cause::__anon8369
889 * ATM traffic descriptor information element
965 * Q.2961 minimum traffic descriptor
/freebsd-11-stable/sys/contrib/ngatm/netnatm/sig/
H A Dsig_unimsgcpy.c70 if(IE_ISGOOD(src->traffic))
71 dst->traffic = src->traffic;
146 if(IE_ISGOOD(src->traffic))
147 dst->traffic = src->traffic;
522 if(IE_ISGOOD(src->traffic))
523 dst->traffic = src->traffic;
544 if(IE_ISGOOD(src->traffic))
[all...]
/freebsd-11-stable/contrib/sendmail/src/
H A Dcontrol.c267 SM_FILE_T *traffic; local
339 traffic = TrafficLogFile;
344 TrafficLogFile = traffic;
/freebsd-11-stable/sbin/atm/atmconfig/
H A Dnatm.c66 u_int traffic; member in struct:natm_route
150 r->traffic = ATMIO_TRAFFIC_UBR;
155 r->traffic = GET1();
157 switch (r->traffic) {
407 /* look at the traffic */
506 errx(1, "bad traffic type '%s'", argv[0]);
658 r->llcsnap ? "LLC/SNAP" : "AAL5", traffics[r->traffic]);
659 switch (r->traffic) {
H A Ddiag.c914 if (v->traffic >= sizeof(traffic_tab)/sizeof(traffic_tab[0]) ||
915 traffic_tab[v->traffic] == NULL)
918 printf("%-8s", traffic_tab[v->traffic]);
926 * Print the VCC table for this interface, traffic parameters.
937 switch (v->traffic) {
963 * Print the VCC table for this interface, ABR traffic parameters.
974 if (v->traffic == ATMIO_TRAFFIC_ABR) {
1022 static int channel, traffic, abr; local
1026 { "traffic", OPT_SIMPLE, &traffic },
[all...]
/freebsd-11-stable/sys/netinet/
H A Dif_atm.c160 op.param.traffic = ATMIO_TRAFFIC_UBR;
173 GET1BYTE(op.param.traffic, addr, alen);
175 switch (op.param.traffic) {
214 printf("%s: bad traffic params\n", __func__);
/freebsd-11-stable/sys/netgraph/atm/
H A Dng_atm.h108 { "traffic", &ng_parse_uint8_type }, \
138 uint8_t traffic; /* traffic type (if_atm.h) */ member in struct:ngm_atm_cpcs_init
162 { "traffic", &ng_parse_uint8_type }, \
/freebsd-11-stable/lib/libngatm/
H A DMakefile23 traffic.c uni_ie.c uni_msg.c \
/freebsd-11-stable/sys/dev/patm/
H A Dif_patm_tx.c139 switch (vcc->vcc.traffic) {
190 if (vcc->vcc.traffic == ATMIO_TRAFFIC_UBR) {
208 if (vcc->vcc.traffic != ATMIO_TRAFFIC_CBR)
225 if (vcc->vcc.traffic == ATMIO_TRAFFIC_UBR) {
245 if (vcc->vcc.traffic == ATMIO_TRAFFIC_CBR)
273 if (vcc->vcc.traffic == ATMIO_TRAFFIC_VBR)
707 if (vcc->vcc.traffic == ATMIO_TRAFFIC_CBR)
728 if (vcc->vcc.traffic == ATMIO_TRAFFIC_ABR) {
740 if (vcc->vcc.traffic == ATMIO_TRAFFIC_ABR) {
912 switch (vcc->vcc.traffic) {
[all...]
H A Dif_patm_ioctl.c101 if ((arg->param.traffic == ATMIO_TRAFFIC_ABR) &&
146 switch (vcc->vcc.traffic) {
/freebsd-11-stable/sys/net/
H A Dif_atm.h130 uint8_t traffic; /* traffic type */ member in struct:atmio_vcc
131 struct atmio_tparam tparam; /* traffic parameters */
/freebsd-11-stable/sys/dev/hatm/
H A Dif_hatm_tx.c584 /* check traffic parameters */
586 switch (vcc->param.traffic) {
673 switch (vcc->param.traffic) {
787 switch (vcc->param.traffic) {
823 if (sc->vccs[cid]->param.traffic == ATMIO_TRAFFIC_CBR) {
H A Dif_hatm_rx.c281 if (vcc->param.traffic == ATMIO_TRAFFIC_ABR) {
H A Dif_hatm_ioctl.c88 "IU", "traffic type for NATM connections");
141 switch (vcc->param.traffic) {
/freebsd-11-stable/sys/contrib/ngatm/netnatm/api/
H A Dcc_conn.c857 setup->setup.traffic = conn->traffic;
993 resp->connect.traffic = conn->traffic;
1277 COND_SHUFFLE(traffic);
1319 conn->traffic = ind->setup.traffic;
H A Dccpriv.h241 struct uni_ie_traffic traffic; member in struct:ccconn
/freebsd-11-stable/sys/netnatm/
H A Dnatm.c222 op.param.traffic = ATMIO_TRAFFIC_UBR;
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound_munin_39 # unbound_munin_hits - base volume, cache hits, unwanted traffic
81 unbound_munin_hits - base volume, cache hits, unwanted traffic
231 echo "graph_title Unbound DNS traffic and cache hits"

Completed in 236 milliseconds

12