summaryrefslogtreecommitdiff
path: root/code/esp32/components/eos/transport.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/esp32/components/eos/transport.c')
-rwxr-xr-xcode/esp32/components/eos/transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/esp32/components/eos/transport.c b/code/esp32/components/eos/transport.c
index 162fe86..9a9309c 100755
--- a/code/esp32/components/eos/transport.c
+++ b/code/esp32/components/eos/transport.c
@@ -60,7 +60,7 @@ static int t_open(void) {
memset((char *)&_myaddr, 0, sizeof(_myaddr));
_myaddr.sin_family = AF_INET;
_myaddr.sin_addr.s_addr = htonl(INADDR_ANY);
- _myaddr.sin_port = htons(0);
+ _myaddr.sin_port = htons(3000);
int rv = bind(udp_sock, (struct sockaddr *)&_myaddr, sizeof(_myaddr));
if (rv < 0) {