I'm Making simple http server, and I don'ät know how to transfer pictures from it. So does anybody know, how to send those pictures to browser. Any example code or article to read Regards Janne
Kristian33
Posts
-
Jpeg sending trough http -
JpegDoes anybody know some easy way to handle and create jpeg pictures? Some free library, or something Regards Janne
-
Key StokesI have seen those, but I still don't get it rigth. Can you give me some example of it?
-
Key StokesHow can I get all key stoke events in my application, not just those I get when my application window is active?
-
Zippping and unzippingHow to zip and unzip files easily? Does anybody know some easy library (lib/dll)
-
Voice genarate and recognitionJep. I know, subjects are quite difficult. That's is reason I would find them somewhere. Microsoft SAPI wuold be nice, but i don't want to use it.
-
Voice genarate and recognitionDoes anybody know some easy library or source code for voice generation and recognation. I don't want to use windows SAPI.
-
incloming socket addressThanks to you all
-
incloming socket addressI have socket server and i would want to know, how to print client sockets address to screen. Is there so function, that makes it to normal ip address form (e.x 120.1.1.2)
-
CPU loadI mean by system load like task manager style in windows 2000/XP.
-
CPU loadHow can I get current system cpu load? Is there some function or?
-
CASyncSocket && receiveIs there any way to timeout receive function? I mean,if no data is send to me and I'm receiving. How I could stop this receiving nicely? For example in 30 seconds? My code: do { cout << "Socket Receiving" << endl; nRead = tmpSocket->Receive(ReceiveStr, RECEIVE_BUFFER_SIZE); strBuilder.addString(ReceiveStr, nRead); } while (nRead == RECEIVE_BUFFER_SIZE);
-
Unlimited Socket receiveI am making server socket with CAsyncSocket. But I don't get how to unlimited buffer for receive messages. I don't know data length before I get it, and I don't want to create constant Huge buffer, but just buffer sized data length. This migth be simple question, but i don't know how to do it.