1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

use context service buffer instead of stack for clent_connect_2

Signed-off-by: Andy Green <andy.green@linaro.org>
This commit is contained in:
Andy Green 2013-02-10 15:19:39 +08:00
parent e310b0c443
commit f54a94b494

View file

@ -9,7 +9,6 @@ struct libwebsocket *__libwebsocket_client_connect_2(
struct sockaddr_in server_addr;
int n;
int plen = 0;
char pkt[512];
lwsl_client("__libwebsocket_client_connect_2\n");
#ifndef LWS_NO_EXTENSIONS
@ -21,7 +20,8 @@ struct libwebsocket *__libwebsocket_client_connect_2(
*/
if (context->http_proxy_port) {
plen = sprintf(pkt, "CONNECT %s:%u HTTP/1.0\x0d\x0a"
plen = sprintf(context->service_buffer,
"CONNECT %s:%u HTTP/1.0\x0d\x0a"
"User-agent: libwebsockets\x0d\x0a"
/*Proxy-authorization: basic aGVsbG86d29ybGQ= */
"\x0d\x0a", wsi->c_address, wsi->c_port);
@ -79,7 +79,7 @@ struct libwebsocket *__libwebsocket_client_connect_2(
if (context->http_proxy_port) {
n = send(wsi->sock, pkt, plen, 0);
n = send(wsi->sock, context->service_buffer, plen, 0);
if (n < 0) {
compatible_close(wsi->sock);
lwsl_debug("ERROR writing to proxy socket\n");