On Tue, Jul 25, 2006 at 02:19:07PM -0300, Flavio Oliveira wrote: > Hi, I put debug option in my aplication, and I got the > results for http://64.236.34.67:80/stream/1005. > It seens that the server sometimes sends the headers, > sometimes no! Is it a problem on Neon Library?
No, it just looks like you are not checking the response status-code - use ne_get_status(). > GET http://64.236.34.67/stream/1005 HTTP/1.1 ... > [status-line] < HTTP/1.1 302 Found This is a redirect. You can retrieve the destination of the redirect from the Location response header. > GET http://64.236.34.67/stream/1005 HTTP/1.1 ... > [status-line] < ICY 200 OK This is a normal response. joe _______________________________________________ neon mailing list [email protected] http://mailman.webdav.org/mailman/listinfo/neon
