write.c 211 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 #include <sys/types.h> #include "http/worker.h" #include "http/response/writer.h" size_t httpWorkerWrite(HttpWorker this, int fd) { return httpResponseWriterWrite(this->writer, fd); } // vim: set ts=4 sw=4: