aboutsummaryrefslogtreecommitdiffstats
path: root/slirp-android
Commit message (Collapse)AuthorAgeFilesLines
* Implement ADB communication over QEMU pipeVladimir Chtchetkine2011-12-131-2/+2
| | | | Change-Id: I62ff5898c7a955aaaa8af8f7ee7ed018af860f80
* Fix internet connectivity of emulator over proxyMatthias Thomae2011-08-101-7/+12
| | | | | | | | When trying to connect to a host on the internet using a proxy, the socket address was passed uninitialized to the proxy manager. The effects were similar to the ones described in Issue 18715. The change adds the socket address to the proxy manager after it has been initialized.
* qemu logging extensionsrich cannings2011-03-015-40/+66
| | | | | | | | | (1) Clear the logs upon receiving a SIGUSR1 signal (2) Add logging timestamps for network connections (3) Extended TCP redirect logs to include local src ip/port and fixed byte-ordering in log files Change-Id: I51e7293c8eeb5979a92e67f52f1c6416400d83c6
* Fix the windows SDK build.David 'Digit' Turner2011-02-171-1/+1
| | | | | | | Use "qemu-queue.h" instead of <sys/queue.h> which may not be provided with all version of mingw on Linux. Change-Id: I78492f6e0ab5648a61b1fe65376edb17e4cb89cd
* Add user mode networking restrictions: a firewallrich cannings2011-02-166-34/+568
| | | | | | | | | | | | | | | | | Command line options added and code is supported for: QEMU_OPTION_drop_udp QEMU_OPTION_drop_tcp QEMU_OPTION_allow_tcp QEMU_OPTION_drop_log QEMU_OPTION_net_forward QEMU_OPTION_max_dns_conns QEMU_OPTION_allow_udp QEMU_OPTION_dns_log Also, this change makes the default max DNS connections unlimited. Change-Id: I887213149956dda155ef514418365bd80d8f1236
* "Negative" DNS IP address fixrich cannings2011-02-091-1/+1
| | | | | | | | | | The DNS server IP is stored in a 32-bit signed int. Thus, no IP address beyond 128.0.0.0 was allowed to be set as DNS server. This change allows for DNS servers to have any IP addresses, except 255.255.255.255 (equivalent to -1 in a 32-bit signed int). Change-Id: I367f46a1de578b0cd123f14f564685c4564aab4e
* Remove compiler warnings when building the emulator.David 'Digit' Turner2010-09-221-1/+4
| | | | | | | This forces -Wall during the build. Note that this patch doesn't remove all warnings, but most of the remaining ones are from upstream anyway. Change-Id: I8808d8495e99866e156ce5780d2e3c305eab491f
* Upstream: HOST_WORDS_ALIGNED -> WORDS_ALIGNEDDavid 'Digit' Turner2010-05-103-5/+5
| | | | Change-Id: Ica9022695d83fb48a8c25fdb1e1f0dc1c63747ff
* Fix Win32 socket error handling.David 'Digit' Turner2010-03-251-1/+2
| | | | | | This also fixes -http-proxy support on Windows. Change-Id: I741b224511c064412ac39351ed4f1b9146a313a5
* Merge upstream QEMU 10.0.50 into the Android source tree.David 'Digit' Turner2009-09-1441-0/+12923
This change integrates many changes from the upstream QEMU sources. Its main purpose is to enable correct ARMv6 and ARMv7 support to the Android emulator. Due to the nature of the upstream code base, this unfortunately also required changes to many other parts of the source. Note that to ensure easier integrations in the future, some source files and directories that have heavy Android-specific customization have been renamed with an -android suffix. The original files are still there for easier integration tracking, but *never* compiled. For example: net.c net-android.c qemu-char.c qemu-char-android.c slirp/ slirp-android/ etc... Tested on linux-x86, darwin-x86 and windows host machines.