From c1261d8d1617d8cf5722039a59ebb66c310f3aea Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Tue, 26 May 2009 13:03:26 +0200 Subject: User Networking: Enable removal of redirections Using the new host_net_redir command you can easily create redirections on the fly while your VM is running. While that's great, it's missing the removal of redirections, in case you want to have a port closed again at a later point in time. This patch adds support for removal of redirections. Signed-off-by: Alexander Graf Signed-off-by: Anthony Liguori --- slirp/libslirp.h | 1 + 1 file changed, 1 insertion(+) (limited to 'slirp/libslirp.h') diff --git a/slirp/libslirp.h b/slirp/libslirp.h index a1cd70e978..6fc2c329ad 100644 --- a/slirp/libslirp.h +++ b/slirp/libslirp.h @@ -18,6 +18,7 @@ void slirp_input(const uint8_t *pkt, int pkt_len); int slirp_can_output(void); void slirp_output(const uint8_t *pkt, int pkt_len); +int slirp_redir_rm(int is_udp, int host_port); int slirp_redir(int is_udp, int host_port, struct in_addr guest_addr, int guest_port); int slirp_add_exec(int do_pty, const void *args, int addr_low_byte, -- cgit v1.2.1