Tagged Questions
3
votes
2answers
66 views
Simple HTTP Server in C - How to response to Browser?
my server is sending a sample response header with body to a request:
static char* not_found_response_template =
"HTTP/1.1 404 Not Found\n"
"Content-type: text/html\n"
"\n"
...
1
vote
2answers
116 views
Separate HTTP GET response from incoming file
I am working on a C program that uses sockets to retrieve a file using the HTTP GET request. I use the recv function to write to a buffer, then append a new file with the contents of the buffer. The ...
2
votes
1answer
509 views
Sending raw http headers
I have the following raw HTTP request:
GET http://www.google.ie/ HTTP/1.1
Host: www.google.ie
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20100101 Firefox/5.0
Accept: ...
0
votes
1answer
3k views
Send HTTP response using C socket
I`m trying to send HTTP response to browser
char *reply =
"HTTP/1.1 200 OK\n"
"Date: Thu, 19 Feb 2009 12:27:04 GMT\n"
"Server: Apache/2.2.3\n"
"Last-Modified: Wed, 18 Jun 2003 16:05:58 GMT\n"
"ETag: ...
1
vote
1answer
526 views
Why expose event of my GTK+ widget will be freezed after a long time? Is it a GTK+ bug?
Here is my code:
#include <gtk/gtk.h>
static int counter = 0;
static PangoLayout* layout;
static GdkGC* gc1;
static GdkGC* gc2;
//**/static GMutex* mu;
static gboolean ...