Improve
This commit is contained in:
parent
12970d3e3b
commit
ccd5fe14a2
2 changed files with 5 additions and 2 deletions
|
@ -130,12 +130,14 @@ Go to manage account.
|
||||||
Add a new SIP proxy.
|
Add a new SIP proxy.
|
||||||
|
|
||||||
```
|
```
|
||||||
Username: <username>@127.13.3.7:<SIP_PORT>
|
Username: <username>@127.13.3.7:5061
|
||||||
Proxy: 127.13.3.7:<SIP_PORT>
|
Proxy: 127.13.3.7:5060
|
||||||
Leave the rest empty.
|
Leave the rest empty.
|
||||||
Uncheck all the checkboxes.
|
Uncheck all the checkboxes.
|
||||||
```
|
```
|
||||||
|
|
||||||
|
You also need to say to Linphone that you are behind a NAT and put `127.13.3.7` as your public IP address.
|
||||||
|
|
||||||
## Docker build
|
## Docker build
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
|
@ -102,6 +102,7 @@ enum FD_STATE read_packet_from_udp (int fd, struct buffer_packet* bp, struct udp
|
||||||
|
|
||||||
if ((int)nread > (int)udp_packet_size) return FDS_ERR;
|
if ((int)nread > (int)udp_packet_size) return FDS_ERR;
|
||||||
if (nread == -1 && errno == EAGAIN) return FDS_AGAIN;
|
if (nread == -1 && errno == EAGAIN) return FDS_AGAIN;
|
||||||
|
if (nread == -1 && errno == EAGAIN) return FDS_AGAIN;
|
||||||
if (nread == -1) return FDS_ERR;
|
if (nread == -1) return FDS_ERR;
|
||||||
|
|
||||||
udp_t->set = 1;
|
udp_t->set = 1;
|
||||||
|
|
Loading…
Reference in a new issue