summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-11-15 22:16:05 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-11-15 22:16:05 +0000
commit7c9d8e07e188597e570a311efc46cb1ab013e5e7 (patch)
tree63edf144a4488a06356947e72f4fc5fb2222bde0 /monitor.c
parent868bfe2b2ba2c6c7e6580ad35af85ad3fcb994bb (diff)
downloadqemu-7c9d8e07e188597e570a311efc46cb1ab013e5e7.tar.gz
new network emulation
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1622 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/monitor.c b/monitor.c
index cf70b575ad..18f0c89910 100644
--- a/monitor.c
+++ b/monitor.c
@@ -196,23 +196,6 @@ static void do_info_version(void)
term_printf("%s\n", QEMU_VERSION);
}
-static void do_info_network(void)
-{
- int i, j;
- NetDriverState *nd;
-
- for(i = 0; i < nb_nics; i++) {
- nd = &nd_table[i];
- term_printf("%d: ifname=%s macaddr=", i, nd->ifname);
- for(j = 0; j < 6; j++) {
- if (j > 0)
- term_printf(":");
- term_printf("%02x", nd->macaddr[j]);
- }
- term_printf("\n");
- }
-}
-
static void do_info_block(void)
{
bdrv_info();