mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
http.c: Fix http header send content.
Currently ast_http_send barricades a portion of the content that needs to be sent in order to establish a connection for things like the ARI client. The conditional and contents have been changed to ensure that everything that needs to be sent, will be sent. ASTERISK-27372 Change-Id: I8816d2d8f80f4fefc6dcae4b5fdfc97f1e46496d
This commit is contained in:
committed by
Benjamin Keith Ford
parent
65357091d8
commit
3821be1c68
@@ -529,10 +529,8 @@ void ast_http_send(struct ast_tcptls_session_instance *ser,
|
||||
) <= 0) {
|
||||
ast_debug(1, "ast_iostream_printf() failed: %s\n", strerror(errno));
|
||||
close_connection = 1;
|
||||
}
|
||||
|
||||
/* send content */
|
||||
if (!close_connection && send_content && fd) {
|
||||
} else if (send_content && fd) {
|
||||
/* send file content */
|
||||
while ((len = read(fd, buf, sizeof(buf))) > 0) {
|
||||
if (ast_iostream_write(ser->stream, buf, len) != len) {
|
||||
ast_debug(1, "ast_iostream_write() failed: %s\n", strerror(errno));
|
||||
|
Reference in New Issue
Block a user