cs252/lab5-src/hello.cc

23 lines
333 B
C++
Raw Normal View History

2018-10-25 14:45:56 -04:00
#include <stdio.h>
#define LF 10
extern "C" void
httprun(int ssock, char * query_string)
{
FILE * fssock = fdopen( ssock, "r+");
if ( fssock == NULL ) {
perror("fdopen");
}
fprintf( fssock, "Content-type: text/html%c%c",LF,LF);
fprintf( fssock, "<h1>Hello. Hi from hello.so</h1>\n");
fclose( fssock );
}