comparison src/http/modules/perl/nginx.xs @ 1178:a77f6980de50

rename $r->rflush to $r->flush
author Igor Sysoev <igor@sysoev.ru>
date Sat, 21 Apr 2007 07:43:23 +0000
parents 4d203f76b757
children 7dbdf47cdcba 8b04c0e37099
comparison
equal deleted inserted replaced
1177:ff0195dfbe0c 1178:a77f6980de50
679 679
680 XSRETURN_EMPTY; 680 XSRETURN_EMPTY;
681 681
682 682
683 void 683 void
684 rflush(r) 684 flush(r)
685 CODE: 685 CODE:
686 686
687 ngx_http_request_t *r; 687 ngx_http_request_t *r;
688 ngx_buf_t *b; 688 ngx_buf_t *b;
689 689
694 XSRETURN_EMPTY; 694 XSRETURN_EMPTY;
695 } 695 }
696 696
697 b->flush = 1; 697 b->flush = 1;
698 698
699 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "$r->rflush"); 699 ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "$r->flush");
700 700
701 (void) ngx_http_perl_output(r, b); 701 (void) ngx_http_perl_output(r, b);
702 702
703 XSRETURN_EMPTY; 703 XSRETURN_EMPTY;
704 704