search for: master_serv

Displaying 3 results from an estimated 3 matches for "master_serv".

Did you mean: master_set
2011 Feb 10
3
Unwanted whitespace generated by template
I have this in a template: ===============cut here===================== # Allow ICMP traffic -A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT <% if netbackup_master_servers %> <% netbackup_master_servers.each do |master_server| -%> # Allow communication with NetBackup master server <%= master_server[0] %> -A RH-Firewall-1-INPUT -p tcp -m tcp -s <%= master_server[1] %> --dport 13724 -j ACCEPT ===============cut here===================== One ex...
2004 Aug 06
0
[PATCH] IceCast2 - socket-based default mount
...-127,6 +127,7 @@ xmlFree(c->error_log); for(i=0; i < MAX_LISTEN_SOCKETS; i++) { if (c->listeners[i].bind_address) xmlFree(c->listeners[i].bind_address); + if (c->listeners[i].default_mount) xmlFree(c->listeners[i].default_mount); } if (c->master_server) xmlFree(c->master_server); if (c->master_password) xmlFree(c->master_password); @@ -266,6 +267,7 @@ configuration->port = 0; configuration->listeners[0].port = 0; configuration->listeners[0].bind_address = NULL; + configuration->listeners[0].default_mo...
2004 Aug 06
0
[RFC] RTP support
...me = CONFIG_DEFAULT_HOSTNAME; configuration->port = 0; + configuration->rtp_port = 8000; + configuration->rtp_ttl = 1; + configuration->rtp_ip = 0; configuration->listeners[0].port = 0; configuration->listeners[0].bind_address = NULL; configuration->master_server = NULL; @@ -348,6 +351,18 @@ configuration->port = atoi(tmp); configuration->listeners[0].port = atoi(tmp); if (tmp) xmlFree(tmp); + } else if (strcmp(node->name, "rtp-port") == 0) { + tmp = (char *)xmlNodeListGetString(d...