meat
meat
ok, added,https://github.com/rousir/ArduinoVoip/commit/b1b6a855f1bdd2b117ba0ac88eed8bcf09ccea60
If the call is answered, send call hang up command to hang up the phone ``` void SipMachine::bye() { sipBye(); status = idle; } ``` If the caller cancels the...
Okay, I didn’t encounter this problem during the test. I have been busy recently. I will check it when I have time. The sip protocol is simple, you can use...
``` if (sipHeader.contentLength > 0) { sipHeader.contentLength -= (str.length() + 1); debugL1_println(str.c_str()); parserSdp(str); if (sipHeader.contentLength < 0) { exec(); if (status == messageIn) { debugL1_println(str.c_str()); messageData = str; } }...
After receiving the call, esp needs to send the answer command many times to answer it normally? 收到呼叫后,esp需要发很多次接听命令才能正常接听?