diff options
author | Sascha Schumann <sas@php.net> | 2000-10-29 16:14:27 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-10-29 16:14:27 +0000 |
commit | af87dfe204d4418951071d102ef15b1b26db2aa2 (patch) | |
tree | 472723f6377cc3e5a3e1652954f61265cf443dff /sapi/roxen | |
parent | bed7034f920d7560fa7635a922f578db528d88d3 (diff) | |
download | php-git-af87dfe204d4418951071d102ef15b1b26db2aa2.tar.gz |
Unify handling of aborted connections
Diffstat (limited to 'sapi/roxen')
-rw-r--r-- | sapi/roxen/roxen.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/roxen/roxen.c b/sapi/roxen/roxen.c index 594ca16819..4b6feac3b0 100644 --- a/sapi/roxen/roxen.c +++ b/sapi/roxen/roxen.c @@ -233,8 +233,7 @@ php_roxen_low_ub_write(const char *str, uint str_length) { pop_stack(); if(sent_bytes != str_length) { /* This means the connection is closed. Dead. Gone. *sniff* */ - PG(connection_status) = PHP_CONNECTION_ABORTED; - zend_bailout(); + php_handle_aborted_connection(); } return sent_bytes; } |