garyservin wrote:I've also asked the same question as an issue in the espressif repo on github but couldn't decipher the answer properly
hahaha, I have that often when write to Chinese - they use Google translate frequently (so far I have talked to 3 or 4 Chinese people who used understandable English).
As far I could understand "atdeveloper" he write: when you use server in transparent mode, you can handle only one client connection, so he give you a hint, that you have to limit link number by function espconn_tcp_set_max_con_allow . And you have to remember to restore this value after leaving transparent mode.
Also, if you will create transparent mode you can upload your modified code
igrr
So do I.
I don't see a reason for transparent mode for server, this will limit client link count to 1 ...
As for client mode this might not bad idea thought. Entering/leaving client mode could be controlled by one of GPIO pin
Fix 5 bags.
+ Insert user_init():
if(espconn_tcp_get_max_con()!=5) {
espconn_tcp_set_max_con(5);
system_restart();
}
Merry Christmas and happy new year 2015!!!