Attention is currently required from: osmith.
1 comment:
File src/osmo_ss7_asp.c:
if (res < 0) {
xua_cli_close_and_reconnect(conn);
goto out;
} else if (res == 0) {
xua_cli_close_and_reconnect(conn);
goto out;
}
could be changed to "if (res <= 0)"
Yes I know but I wanted to keep the two conditions separated in general, one for regular socket close and other one for errors. Makes it easier to extend later if neeeded.
To view, visit change 36575. To unsubscribe, or for help writing mail filters, visit settings.