Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What do error codes mean, e.g. errno=11 #65

Open
1260900 opened this issue Sep 21, 2024 · 1 comment
Open

What do error codes mean, e.g. errno=11 #65

1260900 opened this issue Sep 21, 2024 · 1 comment

Comments

@1260900
Copy link

1260900 commented Sep 21, 2024

recv on socket 14 returns -1 (errno=11)
socket 14: 1 ( IPOLLING_READ )
recv on socket 14 returns 20 (errno=0)

@jselbie
Copy link
Owner

jselbie commented Sep 22, 2024

Can you share your command line and operating system?

I'm 90% certain this is expected and normal for TCP mode. errno 11 is legacy EAGAIN, which means the socket didn't have any more immediate data on it. This is a benign error - really just a verbose info message. Not an actual error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants