diff --git a/https_examples.cpp b/https_examples.cpp index 1d97215..40b60e2 100644 --- a/https_examples.cpp +++ b/https_examples.cpp @@ -117,7 +117,7 @@ int main() { size_t read_length; while((read_length=ifs.read(&buffer[0], buffer_size).gcount())>0) { ss.write(&buffer[0], read_length); - response << ss.rdbuf() << HttpServer::flush; + response << ss.rdbuf() << HttpsServer::flush; } } else