Skip to content

Commit

Permalink
Don't use 9899 as the port number.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuexen committed Jun 30, 2016
1 parent 1fc02ba commit 5d59dde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/ekr_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ main(void)
#ifdef HAVE_SIN_LEN
sin_s.sin_len = sizeof(struct sockaddr_in);
#endif
sin_s.sin_port = htons(9899);
sin_s.sin_port = htons(9901);
sin_s.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
#ifdef _WIN32
if (bind(fd_c, (struct sockaddr *)&sin_c, sizeof(struct sockaddr_in)) == SOCKET_ERROR) {
Expand Down

0 comments on commit 5d59dde

Please sign in to comment.