Server 0.0.1
HTTP/REST server implementation

src/http/worker/answer.c

Go to the documentation of this file.
00001 
00023 #include <sys/types.h>
00024 
00025 #include "http/worker.h"
00026 #include "http/writer.h"
00027 #include "stream.h"
00028 
00029 ssize_t
00030 httpWorkerWrite(HttpWorker this, Stream st)
00031 {
00032         return httpWriterWrite(this->writer, st);
00033 }
00034 
00035 // vim: set ts=4 sw=4:
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines