blob: 0c488dffac47a1fd03cb426a3f2003fa69eecc43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* libxenstat: statistics-collection library for Xen
* Copyright (C) International Business Machines Corp., 2005
* Authors: Josh Triplett <josht@us.ibm.com>
* Judy Fischbach <jfisch@us.ibm.com>
* David Hendricks <dhendrix@us.ibm.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include "xenstat_priv.h"
/* Collect information about networks */
int xenstat_collect_networks(xenstat_node * node)
{
return 1;
}
/* Free network information in handle */
void xenstat_uninit_networks(xenstat_handle * handle)
{
}
/* Collect information about VBDs */
int xenstat_collect_vbds(xenstat_node * node)
{
return 1;
}
/* Free VBD information in handle */
void xenstat_uninit_vbds(xenstat_handle * handle)
{
}
|