Search found 2 matches

by Ozgun Kanal
Wed Mar 13, 2019 6:18 am
Forum: ESP-IDF
Topic: How to Check Whether TCP Client is Connected?
Replies: 1
Views: 3237

Re: How to Check Whether TCP Client is Connected?

As far as I observed, the socket api has a blocking structure. There are 2 lwip apis remaning: lwip raw api and netconn api. Esp doesnt support raw api to be threadsafe. Therefore, using netconn api with callback solves issue.
by Ozgun Kanal
Mon Feb 25, 2019 8:21 pm
Forum: ESP-IDF
Topic: How to Check Whether TCP Client is Connected?
Replies: 1
Views: 3237

How to Check Whether TCP Client is Connected?

Hi all, hope you are well! I'm working on a project which ESP32 works as TCP transparent Wifi-Uart Passthrough. Im using ESP32 as AP and connecteing as a client via a terminal program(hercules) on a specific IP address and port number . However, how can I understand the time when TCP clients is disc...