-
Notifications
You must be signed in to change notification settings - Fork 126
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
Cannot use UDP sockets: unresolved external symbol #76
Comments
Perhaps it would be helpful if you show us the error. |
here it is: |
OK. It's better if you paste in the text of the sample and error(s) rather than adding an image or a link. So a trivial UDP example (on Windows x64) that creates and binds an IPv4 UDP socket is complaining that That's odd... the function is completely defined in the header: sockpp/include/sockpp/datagram_socket.h Lines 76 to 78 in f3100f5
Plus this same idea is implemented in the UDP echo server example which, last I checked, compiles and run fine on Windows. sockpp/examples/udp/udpechosvr.cpp Lines 91 to 100 in f3100f5
So far, I can't think of what would cause this, but I can test it from a stand-alone app to see if it does anything weird. |
When I try to create an UDP socket using this library an unresolved external symbol errors pops up. However this does not happen if I try to create a TCP socket.
What should I do?
The text was updated successfully, but these errors were encountered: