Home
last modified time | relevance | path

Searched refs:udprange (Results 1 – 5 of 5) sorted by relevance

/dports/net/dante/dante-1.4.3/sockd/
H A Dsockd_request.c3007 if (io.srule.udprange.op == range)
3009 ntohs(io.srule.udprange.end) - ntohs(io.srule.udprange.start) + 1);
3014 if (io.srule.udprange.op == range) {
3025 ntohs(io.srule.udprange.start),
3026 ntohs(io.srule.udprange.end),
3034 && io.srule.udprange.op == range && --triesleft > 0);
3043 if (io.srule.udprange.op != none) {
3052 ntohs(io.srule.udprange.start),
3053 ntohs(io.srule.udprange.end));
3058 io.srule.udprange.end,
[all …]
H A Drule.c462 if (rule.udprange.op == range)
464 ntohs(rule.udprange.start), ntohs(rule.udprange.end));
/dports/net/dante/dante-1.4.3/lib/
H A Dconfig_parse.y3386 ASSIGN_PORTNUMBER($1, rule.udprange.start);
3393 ASSIGN_PORTNUMBER($1, rule.udprange.end);
3394 rule.udprange.op = range;
3396 if (ntohs(rule.udprange.start) > ntohs(rule.udprange.end))
3398 (int)$1, ntohs(rule.udprange.start));
H A Dconfig_parse.c6065 ASSIGN_PORTNUMBER((yyvsp[0].number), rule.udprange.start); in yyparse()
6075 ASSIGN_PORTNUMBER((yyvsp[0].number), rule.udprange.end); in yyparse()
6076 rule.udprange.op = range; in yyparse()
6078 if (ntohs(rule.udprange.start) > ntohs(rule.udprange.end)) in yyparse()
6080 (int)(yyvsp[0].number), ntohs(rule.udprange.start)); in yyparse()
/dports/net/dante/dante-1.4.3/include/
H A Dsockd.h1567 } udprange; /* udprange, if limited. */ member