Reputation: 27
Does anyone know in which case pj_sock_recv returns error code 120107 (0x1d52b)? Im using
pj_sock_recvfunction and it should return PJ_SUCCESS if packet is received, but in
__android_log_print` I get error code from that function.
Upvotes: 1
Views: 205
Reputation: 687
This seems to be in system error space, thus it would be code 107, thus it would be ENOTCONN, socket not connected.
Upvotes: 1