summaryrefslogtreecommitdiff
path: root/slirp/slirp.h
diff options
context:
space:
mode:
authorCédric Le Goater <clg@kaod.org>2017-04-14 10:35:03 +0200
committerJason Wang <jasowang@redhat.com>2017-04-25 19:17:25 +0800
commit47bb83cad45eb7ce194a8ffd18f73c98edb46aec (patch)
tree7d6d36f8d73b0c280d6f9aba732551efbdbad32a /slirp/slirp.h
parentea337c654906c053da45c461d91df76a7b84429c (diff)
downloadqemu-47bb83cad45eb7ce194a8ffd18f73c98edb46aec.tar.gz
slirp: add a fake NC-SI backend
NC-SI (Network Controller Sideband Interface) enables a BMC to manage a set of NICs on a system. This model takes the simplest approach and reverses the NC-SI packets to pretend a NIC is present and exercise the Linux driver. The NCSI header file <ncsi-pkt.h> comes from mainline Linux and was untabified. Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'slirp/slirp.h')
-rw-r--r--slirp/slirp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/slirp/slirp.h b/slirp/slirp.h
index 3877f667f0..5af4f482b5 100644
--- a/slirp/slirp.h
+++ b/slirp/slirp.h
@@ -231,6 +231,9 @@ extern Slirp *slirp_instance;
void if_start(Slirp *);
+/* ncsi.c */
+void ncsi_input(Slirp *slirp, const uint8_t *pkt, int pkt_len);
+
#ifndef _WIN32
#include <netdb.h>
#endif