Rusty Hodge

Results 13 comments of Rusty Hodge

Or kill -HUP Get the PID by pgrep icecast (or icecast2 if yours is named that way)

That seems to be an issue in the player, not Icecast. We had this issue in our player app where we were parsing (and presenting) the metadata as we got...

You've got this: ``` 80 443 ``` and under paths you have ``` /etc/icecast2/certs/somawild.key /etc/icecast2/certs/somawild.crt ``` Use your own certs of course.

There seems to be an issue in kh22 that causes SSL not to work when you -HUP the server. If you stop it and restart it, it will work, in...

This may be a bug in the latest version, we've seen similar things, and have a temporary work-around: What we ended up doing was blocking the IPs (with Linux iptables)...

So it's just the socket wasn't getting closed? /* _set_connection_peer failed - close socket to prevent leak, then reset connection state */ sock_close (sock); Was the only change in connection,c...

I'm running kh22 with just the patch mentioned above, so far looks good, but I'll run it for a week or so and report back.

FYI this is the portion I changed based on @verl-tech 's fork: ``` int connection_init (connection_t *con, sock_t sock, const char *addr) { if (con) { con->sock = sock; if...

I don't think my fix above fully affected the fix. I think there's another file descriptor being left open someplace when someone does a HTTP request, possible an OPTIONS without...

To clarify, when you update, the server stops responding on port 443? But you can make a SSL connection to port 80?