소스 검색

Change the port to connect to

Ian Goldberg 8 년 전
부모
커밋
6ca0f7c59e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      client/socks5proxy.c

+ 1 - 1
client/socks5proxy.c

@@ -99,7 +99,7 @@ int main(void){
 	struct sockaddr_in ous_addr;
 	ous_addr.sin_family = AF_INET;
 	inet_pton(AF_INET, "127.0.0.1", &(ous_addr.sin_addr));
-	ous_addr.sin_port = htons(8888);
+	ous_addr.sin_port = htons(57173);
 
 	int32_t ous_in = socket(AF_INET, SOCK_STREAM, 0);
 	if(ous_in < 0){