Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion http-relay.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ static int httpr_append_header(redsocks_client *client, char *line)
// This function is not reenterable
static char *fmt_http_host(struct sockaddr_in addr)
{
static char host[] = "123.123.123.123:12345";
static char host[] = "127.127.127.127:12345";
if (ntohs(addr.sin_port) == 80)
return inet_ntoa(addr.sin_addr);
else {
Expand Down