Re: [android-developers] Emulator not receiving UDP Packets

2009-11-17 Thread David Turner
On Tue, Nov 17, 2009 at 8:26 AM, David Turner wrote: > the emulator only listens on 127.0.0.1 on the machine it runs on. This is > intentional. > > to make it clear, it only listens on 127.0.0.1 after you setup any redirection (either though adb or the emulator's console) > If you're sending th

Re: [android-developers] Emulator not receiving UDP Packets

2009-11-17 Thread David Turner
the emulator only listens on 127.0.0.1 on the machine it runs on. This is intentional. If you're sending the UDP packets to your machine's real IP address (e.g. 192.168.1.1) then the emulator will not see them. you should really use something like ssh port forwarding if you want to do that kind o

[android-developers] Emulator not receiving UDP Packets

2009-11-17 Thread Gopi$h
>From a remote machine we are sending some UDP packets to our Android emulator. We are able to see the UDP packets reaching the host machine, but not able to reach the emulator, In Wireshark we are getting "Destination port unreachable" The port we are using is:49152 and static ip at both ends Is