This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
TT#14008 fix "Connection: Close" HTTP breakage
closes
#1482
Change-Id: I5357a079616476b3fd1d7cfa842b23fa31135674
pull/1487/head
Richard Fuchs
4 years ago
parent
91169cc152
commit
b907dea9e3
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
daemon/websocket.c
+ 2
- 1
daemon/websocket.c
View File
@ -260,7 +260,8 @@ static int websocket_dequeue(struct websocket_conn *wc) {
int
ret
=
0
;
if
(
is_http
)
ret
=
lws_http_transaction_completed
(
wsi
)
;
/
/
may
destroy
`
wc
`
if
(
lws_http_transaction_completed
(
wsi
)
=
=
1
)
/
/
may
destroy
`
wc
`
ret
=
-
1
;
return
ret
;
}
Write
Preview
Loading…
Cancel
Save