summaryrefslogtreecommitdiff
path: root/slirp/sbuf.c
diff options
context:
space:
mode:
authoraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-08 19:18:21 +0000
committeraliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162>2009-01-08 19:18:21 +0000
commite1c5a2b33409b9795fa58bf389eac855981330a5 (patch)
treec88f13940cab1cc4824cee90109fe93d6ffd3670 /slirp/sbuf.c
parent4dda406337050578c252374981733223c9af72f3 (diff)
downloadqemu-e1c5a2b33409b9795fa58bf389eac855981330a5.tar.gz
Redirect slirp traffic to/from qemu character device (Gleb Natapov)
Signed-off-by: Gleb Natapov <gleb@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6240 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'slirp/sbuf.c')
-rw-r--r--slirp/sbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/slirp/sbuf.c b/slirp/sbuf.c
index b0e0838405..2e6e2b2140 100644
--- a/slirp/sbuf.c
+++ b/slirp/sbuf.c
@@ -108,7 +108,7 @@ sbappend(so, m)
* ottherwise it'll arrive out of order, and hence corrupt
*/
if (!so->so_rcv.sb_cc)
- ret = send(so->s, m->m_data, m->m_len, 0);
+ ret = slirp_send(so, m->m_data, m->m_len, 0);
if (ret <= 0) {
/*