Revision 72cf2d4f net.h

b/net.h
1 1
#ifndef QEMU_NET_H
2 2
#define QEMU_NET_H
3 3

  
4
#include "sys-queue.h"
4
#include "qemu-queue.h"
5 5
#include "qemu-common.h"
6 6
#include "qdict.h"
7 7

  
......
37 37
typedef void (NetPacketSent) (VLANClientState *, ssize_t);
38 38

  
39 39
struct VLANPacket {
40
    TAILQ_ENTRY(VLANPacket) entry;
40
    QTAILQ_ENTRY(VLANPacket) entry;
41 41
    VLANClientState *sender;
42 42
    int size;
43 43
    NetPacketSent *sent_cb;
......
49 49
    VLANClientState *first_client;
50 50
    struct VLANState *next;
51 51
    unsigned int nb_guest_devs, nb_host_devs;
52
    TAILQ_HEAD(send_queue, VLANPacket) send_queue;
52
    QTAILQ_HEAD(send_queue, VLANPacket) send_queue;
53 53
    int delivering;
54 54
};
55 55

  

Also available in: Unified diff