However it returns false every time. http://i.imgur.com/qpIArhH.png - This is what my blueprint looks like too. Not sure what could be wrong. Any ideas?
The UE4 socket interface follows the traditional BSD socket interface pretty closely, so it may be helpful to familiarize yourself with it as well.
The Connect function is used to initiate a connection on a connection-based protocol, like TCP. But UDP is connectionless, so in order to communicate with a UDP server, you’ll need to bind the socket to an address (your local address is fine, you can use ISocketSubsystem::GetLocalBindAddr) with ISocketSubsystem::BindNextPort or FSocket::Bind. You should then be able to send and receive data with FSocket::SendTo and FSocket::RecvFrom.