Home
last modified time | relevance | path

Searched refs:gwname (Results 1 – 9 of 9) sorted by relevance

/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/ip/dhcpd/
H A Dtestlook.c126 char gwname[Ndbvlen]; in ipinfo() local
131 gwname[0] = 0; in ipinfo()
164 if(gwname[0] == 0) in ipinfo()
165 lookval(t, s.t, "ipgw", gwname); in ipinfo()
169 if(iip->bootf[0] && fsname[0] && gwname[0] && auname[0]) in ipinfo()
188 recursesubnet(db, classmask[CLASS(iip->ipaddr)], iip, fsname, gwname, auname); in ipinfo()
194 if(gwname[0]) in ipinfo()
195 lookupip(db, gwname, iip->gwip, iip); in ipinfo()
/dports/sysutils/istio/istio-1.6.7/pilot/pkg/model/
H A Dconfig.go365 func resolveGatewayName(gwname string, meta ConfigMeta) string {
366 out := gwname
370 if !strings.Contains(gwname, "/") {
371 if !strings.Contains(gwname, ".") {
373 out = meta.Namespace + "/" + gwname
376 i := strings.Index(gwname, ".")
377 out = gwname[i+1:] + "/" + gwname[:i]
381 i := strings.Index(gwname, "/")
382 if gwname[:i] == "." {
383 out = meta.Namespace + "/" + gwname[i+1:]
/dports/sysutils/munin-contrib/contrib-c31cb28/plugins/groupwise/
H A Dsnmp__gwia_bytes_133 my $gwname = &get_single ($session, "1.3.6.1.4.1.23.2.70.1.1.$pos"); # gwiaGatewayName
139 graph_title GWIA byte load ($gwname)
140 graph_info Shows per minute activity of the Groupwise Internet Agent (GWIA), here: $gwname.<br />Ou…
H A Dsnmp__gwia_msgs_145 my $gwname = &get_single ($session, "1.3.6.1.4.1.23.2.70.1.1.$pos"); # gwiaGatewayName
152 graph_title GWIA msg load ($gwname)
153 graph_info Shows per minute activity of the Groupwise Internet Agent (GWIA), here: $gwname.<br />Ou…
/dports/net/freeswitch/freeswitch-1.10.3.-release/scripts/perl/
H A Dmkgws.pl12 my ($gwname, $username, $password) = split(/,/, $line);
14 <gateway name="$gwname">
/dports/sysutils/racktables/RackTables-0.21.5/wwwroot/inc/
H A Dremote.php598 function callScript ($gwname, $params, $in, &$out, &$errors) argument
605 if ('/' === substr ($gwname, 0, 1))
607 $binary = $gwname;
611 if (isset ($local_gwdir) && file_exists ("$local_gwdir/$gwname"))
613 elseif (isset ($racktables_gwdir) && file_exists ("$racktables_gwdir/$gwname"))
616 throw new RTGatewayError ("Could not find the gateway file called '$gwname'");
617 $binary = "./$gwname";
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/endpoints/mod_sofia/
H A Dmod_sofia.c4361 char *gwname, *param, *varname; in SWITCH_STANDARD_API() local
4376 gwname = argv[0]; in SWITCH_STANDARD_API()
4380 if (zstr(gwname) || zstr(param) || zstr(varname)) { in SWITCH_STANDARD_API()
4384 if (!(gateway = sofia_reg_find_gateway(gwname))) { in SWITCH_STANDARD_API()
H A Dsofia.c60 static void parse_gateways(sofia_profile_t *profile, switch_xml_t gateways_tag, const char *gwname);
1533 const char *gwname = switch_channel_get_variable(channel, "sip_use_gateway"); in our_sofia_event_callback() local
1534 if (!zstr(gwname)) { in our_sofia_event_callback()
1535 switch_set_string(sofia_private->auth_gateway_name, gwname); in our_sofia_event_callback()
3700 static void parse_gateways(sofia_profile_t *profile, switch_xml_t gateways_tag, const char *gwname) in parse_gateways() argument
3716 if (gwname && strcmp(gwname, name)) { in parse_gateways()
/dports/net/freeswitch/freeswitch-1.10.3.-release/
H A DChangeLog2013 …mod_sofia: add ability for multiple profiles to share the same gateway names via profile::gwname s…