Open sourabhjains opened 6 years ago
There should be some perror() output:
Set_errno(netperf_response.content.serv_errno);
fprintf(where,
"netperf: remote error %d",
netperf_response.content.serv_errno);
perror("");
fflush(where);
which will be converting the remote system's errno value (in this case '11') to an error string. In any event, you can lookup what errno 11 means and that should give you an idea what may have happened.
https://github.com/HewlettPackard/netperf/blob/d566775bf2e0f87b3d81bd799cccd40fda2de133/src/nettest_omni.c#L4847
What could be the possible reason?
Any suggestion would be great.