Displaying 2 results from an estimated 2 matches for "getispubl".
Did you mean:
getispublic
2004 Aug 06
1
Why doesn't yp.icecast.org show my stream?
Dave Hayes <dave@jetcafe.org> writes:
> Darkice has:
> public = yes
> So I check darkice:
> Icecast.cpp:
> ...
> str = "\nx-audiocast-public: ";
> sink->write( str, strlen( str));
> str = getIsPublic() ? "yes" : "no";
> sink->write( str, strlen( str));
> and then icecast:
> ....
> else if (ice_strncmp(command, "x-audiocast-public", 18) == 0)
> source->audiocast.public = atoi (arg);
> So icecast expects "1" or &quo...
2004 Aug 06
2
Why doesn't yp.icecast.org show my stream?
...; relay icecast server -> main icecast server
|
+->to other networks
Darkice has:
public = yes
So I check darkice:
Icecast.cpp:
...
str = "\nx-audiocast-public: ";
sink->write( str, strlen( str));
str = getIsPublic() ? "yes" : "no";
sink->write( str, strlen( str));
and then icecast:
....
else if (ice_strncmp(command, "x-audiocast-public", 18) == 0)
source->audiocast.public = atoi (arg);
So icecast expects "1" or "0" while darkice writ...