diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-03-05 01:38:12 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-03-05 01:38:12 +0100 |
commit | 1390e77b0742a9fd38ca9986f76f04a7ffab16a4 (patch) | |
tree | d7d09cf64c9ed526372f1cf19136935d9379eb09 /src/blogc-runserver/httpd.h | |
parent | 326530ab1a26e2e09e2ab9143f9194eb96fc2829 (diff) | |
download | blogc-1390e77b0742a9fd38ca9986f76f04a7ffab16a4.tar.gz blogc-1390e77b0742a9fd38ca9986f76f04a7ffab16a4.tar.bz2 blogc-1390e77b0742a9fd38ca9986f76f04a7ffab16a4.zip |
runserver: implemented ipv6 support
Diffstat (limited to 'src/blogc-runserver/httpd.h')
-rw-r--r-- | src/blogc-runserver/httpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blogc-runserver/httpd.h b/src/blogc-runserver/httpd.h index 2bf5a89..cca6508 100644 --- a/src/blogc-runserver/httpd.h +++ b/src/blogc-runserver/httpd.h @@ -9,7 +9,7 @@ #ifndef _HTTPD_H #define _HTTPD_H -int br_httpd_run(const char *host, unsigned short port, const char *docroot, +int br_httpd_run(const char *host, const char *port, const char *docroot, size_t max_threads); #endif /* _HTTPD_H */ |