Move network redirection code out of vl.c and into net.c

Mostly code motion.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>



git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5581 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
aliguori 2008-10-31 19:10:00 +00:00
parent 6f97dba008
commit 63a01ef83a
5 changed files with 1632 additions and 1462 deletions

View file

@ -193,4 +193,11 @@ void do_usb_add(const char *devname);
void do_usb_del(const char *devname);
void usb_info(void);
const char *get_opt_name(char *buf, int buf_size, const char *p);
const char *get_opt_value(char *buf, int buf_size, const char *p);
int get_param_value(char *buf, int buf_size,
const char *tag, const char *str);
int check_params(char *buf, int buf_size,
const char * const *params, const char *str);
#endif