Hello I am trying to connect to a box that is on the network. It has a working UDP server on it. With the code below I am able to communicate with the box and send/receive UDP p
There is No Way you can connect your android emulator to any thing physical on your network directly.
Android Emulator creates its own LAN and each emulator instance a new LAN instance with the same IPs (This is OK because they can't access each other)
If you insist on using the Emulator to communicate with the Box , you should create a UDP proxy socket on your PC (Using JAVA , C# , C++ , VB ... or any desktop programming language you want)
They way your Desktop App Will Work
There is a good demonistration on the subject on Android's developers website.
Please take a look Here
Good Luck