diff options
author | Sascha Schumann <sas@php.net> | 2002-10-26 20:45:35 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-10-26 20:45:35 +0000 |
commit | c46ed2114e7ab05e8cb040d5f7927f63183bad99 (patch) | |
tree | a894f1c5defb3502d3fafdcec52fa56557c06269 /sapi/thttpd | |
parent | 2c480b0f6fefce6b6ed5746c3b9862b6a3a9bfc2 (diff) | |
download | php-git-c46ed2114e7ab05e8cb040d5f7927f63183bad99.tar.gz |
not sure what this async_send is doing in here, so relieve it from its duty.
Diffstat (limited to 'sapi/thttpd')
-rw-r--r-- | sapi/thttpd/thttpd.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sapi/thttpd/thttpd.c b/sapi/thttpd/thttpd.c index db8a5543c4..0ec40943b3 100644 --- a/sapi/thttpd/thttpd.c +++ b/sapi/thttpd/thttpd.c @@ -43,7 +43,6 @@ typedef struct { httpd_conn *hc; int read_post_data; void (*on_close)(int); - long async_send; smart_str sbuf; int seen_cl; @@ -59,10 +58,6 @@ static php_thttpd_globals thttpd_globals; #define TG(v) (thttpd_globals.v) #endif -PHP_INI_BEGIN() - STD_PHP_INI_ENTRY("async_send", "0", PHP_INI_ALL, OnUpdateInt, async_send, php_thttpd_globals, thttpd_globals) -PHP_INI_END() - static int sapi_thttpd_ub_write(const char *str, uint str_length TSRMLS_DC) { int n; |