socket.c (1422e32db51ff2b1194fb24a6201c4310be5667d) socket.c (83c9089e73b81c69dc1ecdf859fa84d2c500fb5f)
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 11 unchanged lines hidden (view full) ---

20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include "config-host.h"
25
26#include "net/net.h"
27#include "clients.h"
1/*
2 * QEMU System Emulator
3 *
4 * Copyright (c) 2003-2008 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 11 unchanged lines hidden (view full) ---

20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#include "config-host.h"
25
26#include "net/net.h"
27#include "clients.h"
28#include "monitor.h"
28#include "monitor/monitor.h"
29#include "qemu-common.h"
30#include "qemu-error.h"
31#include "qemu-option.h"
32#include "qemu_socket.h"
33#include "iov.h"
34
35typedef struct NetSocketState {
36 NetClientState nc;

--- 718 unchanged lines hidden ---
29#include "qemu-common.h"
30#include "qemu-error.h"
31#include "qemu-option.h"
32#include "qemu_socket.h"
33#include "iov.h"
34
35typedef struct NetSocketState {
36 NetClientState nc;

--- 718 unchanged lines hidden ---