We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. I'm trying to setup tcp server on esp32. But, when i'm defining struct ip_addr server_ip; i got error:
struct ip_addr server_ip;
error: storage size of 'server_ip' isn't known
I'm including lwip/tcp.h and lwip/ip_addr.h
The text was updated successfully, but these errors were encountered:
This has been renamed to ip_addr_t in recent LWIP. Try:
ip_addr_t
ip_addr_t server_ip;
Sorry, something went wrong.
Thanks! My mistake!
No branches or pull requests
Hi. I'm trying to setup tcp server on esp32. But, when i'm defining
struct ip_addr server_ip;
i got error:I'm including lwip/tcp.h and lwip/ip_addr.h
The text was updated successfully, but these errors were encountered: