1
Network / Streaming Http
« on: December 20, 2010, 09:03:54 am »
The problem is not so much with how the audio streams work, its more to do with how sf::Http works. WHen you do a request ie
Page = Http.SendRequest(Request);
this blocks until it gets to the end of the Page, filling up the internal myBody string. I guess what I need to do is extend the http class to allow it to spit out a chunk of it at a time. Or just build on the sockets stuff..
Page = Http.SendRequest(Request);
this blocks until it gets to the end of the Page, filling up the internal myBody string. I guess what I need to do is extend the http class to allow it to spit out a chunk of it at a time. Or just build on the sockets stuff..