-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
No recvfrom in socket.jl #8901
Comments
Small clarification: on 0.3, use |
Documentation added in 1d8e162. Closing for now but if something is missing, leave a comment and we'll reopen. |
I must be missing something. In order to write a UDP server, you need to know the address from which the packet was sent in order to send a reply. That's usually done with How do you send a reply back to the client in Julia? |
You are not missing anything - I was being dense, so thanks for explaining. The source address is provided in the callback from libuv (see |
Hi, is there any way to send a reply back to the client in Julia? |
It looks like there's no binding to
recvfrom
in the socket library, which makes it impossible to write UDP servers.The text was updated successfully, but these errors were encountered: