开发者

What does this error mean? - httperf: connection failed with unexpected error 105

Does anyone know what this httperf error means? Is this having a negative effect on my tests?

httperf: connection failed with unexpected error 105
开发者_如何转开发


The numeric error code is an errno value. When errno is 105 (ENOBUFS) it means that there's no buffer space available. Ie, buy more RAM or reduce the maximum size of the buffers for TCP sockets.

To find out what the error code meant, I did:

grep 105 /usr/include/*/*errno*

which gave me:

/usr/include/asm-generic/errno.h:#define    ENOBUFS     105 /* No buffer space available */

Also wikipedia might have more details if you look for ENOBUFS.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜