File: libvirt-libvirt-storage.html

package info (click to toggle)
libvirt 5.0.0-4%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 251,264 kB
  • sloc: ansic: 573,843; xml: 168,347; sh: 9,976; python: 4,883; perl: 3,953; makefile: 3,323; ml: 465
file content (2425 lines) | stat: -rw-r--r-- 132,682 bytes parent folder | download
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
  <!--
        This file is autogenerated from html/libvirt-libvirt-storage.html.in
        Do not edit this file. Changes will be lost.
      -->
  <!--
        This page was generated at Thu Jan 10 20:48:18 UTC 2019.
      -->
  <head>
    <meta charset="UTF-8"/>
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    <link rel="stylesheet" type="text/css" href="../main.css"/>
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/>
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/>
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/>
    <link rel="manifest" href="/manifest.json"/>
    <meta name="theme-color" content="#ffffff"/>
    <title>libvirt: Module libvirt-storage from libvirt</title>
    <meta name="description" content="libvirt, virtualization, virtualization API"/>
    <script type="text/javascript">
      <!--
          
      function init() {
          window.addEventListener('scroll', function(e){
              var distanceY = window.pageYOffset || document.documentElement.scrollTop,
              shrinkOn = 94
              home = document.getElementById("home");
              links = document.getElementById("jumplinks");
              search = document.getElementById("search");
              body = document.getElementById("body");
              if (distanceY > shrinkOn) {
                  if (home.className != "navhide") {
                      body.className = "navhide"
                      home.className = "navhide"
                      links.className = "navhide"
                      search.className = "navhide"
                  }
              } else {
                  if (home.className == "navhide") {
                      body.className = ""
                      home.className = ""
                      links.className = ""
                      search.className = ""
                  }
              }
          });
      }
      window.onload = init();
           
          -->
    </script>
  </head>
  <body>
    <div id="body">
      <div id="content">
        <h1>Module libvirt-storage from libvirt</h1>
        <p>Provides APIs for the management of storage pools and volumes Copyright (C) 2006-2016 Red Hat, Inc. 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. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see <a href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>.</p>
        <h2>Table of Contents</h2>
        <h3>
          <a href="#macros">Macros</a>
        </h3>
        <pre class="api"><span class="directive">#define</span> <a href="#VIR_STORAGE_POOL_EVENT_CALLBACK">VIR_STORAGE_POOL_EVENT_CALLBACK</a>
</pre>
        <h3>
          <a href="#types">Types</a>
        </h3>
        <pre class="api"><span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virConnectListAllStoragePoolsFlags">virConnectListAllStoragePoolsFlags</a>
<span class="keyword">typedef</span> <span class="type">struct _virStoragePool</span> <a href="#virStoragePool">virStoragePool</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStoragePoolBuildFlags">virStoragePoolBuildFlags</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStoragePoolCreateFlags">virStoragePoolCreateFlags</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStoragePoolDeleteFlags">virStoragePoolDeleteFlags</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStoragePoolEventID">virStoragePoolEventID</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStoragePoolEventLifecycleType">virStoragePoolEventLifecycleType</a>
<span class="keyword">typedef</span> <span class="type">struct _virStoragePoolInfo</span> <a href="#virStoragePoolInfo">virStoragePoolInfo</a>
<span class="keyword">typedef</span> <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolInfo">virStoragePoolInfo</a> *</span> <a name="virStoragePoolInfoPtr">virStoragePoolInfoPtr</a>
<span class="keyword">typedef</span> <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePool">virStoragePool</a> *</span> <a name="virStoragePoolPtr">virStoragePoolPtr</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStoragePoolState">virStoragePoolState</a>
<span class="keyword">typedef</span> <span class="type">struct _virStorageVol</span> <a href="#virStorageVol">virStorageVol</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolCreateFlags">virStorageVolCreateFlags</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolDeleteFlags">virStorageVolDeleteFlags</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolDownloadFlags">virStorageVolDownloadFlags</a>
<span class="keyword">typedef</span> <span class="type">struct _virStorageVolInfo</span> <a href="#virStorageVolInfo">virStorageVolInfo</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolInfoFlags">virStorageVolInfoFlags</a>
<span class="keyword">typedef</span> <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolInfo">virStorageVolInfo</a> *</span> <a name="virStorageVolInfoPtr">virStorageVolInfoPtr</a>
<span class="keyword">typedef</span> <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVol">virStorageVol</a> *</span> <a name="virStorageVolPtr">virStorageVolPtr</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolResizeFlags">virStorageVolResizeFlags</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolType">virStorageVolType</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolUploadFlags">virStorageVolUploadFlags</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageVolWipeAlgorithm">virStorageVolWipeAlgorithm</a>
<span class="keyword">typedef</span> <span class="keyword">enum</span> <a href="#virStorageXMLFlags">virStorageXMLFlags</a>
</pre>
        <h3>
          <a href="#functions">Functions</a>
        </h3>
        <pre class="api"><span class="type">char *</span>	<a href="#virConnectFindStoragePoolSources">virConnectFindStoragePoolSources</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>						 <span class="type">const char *</span> type, <br/>						 <span class="type">const char *</span> srcSpec, <br/>						 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virConnectListAllStoragePools">virConnectListAllStoragePools</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>					 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> **</span> pools, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virConnectListDefinedStoragePools">virConnectListDefinedStoragePools</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>						 <span class="type">char ** const</span> names, <br/>						 <span class="type">int</span> maxnames)
<span class="type">int</span>	<a href="#virConnectListStoragePools">virConnectListStoragePools</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>					 <span class="type">char ** const</span> names, <br/>					 <span class="type">int</span> maxnames)
<span class="type">int</span>	<a href="#virConnectNumOfDefinedStoragePools">virConnectNumOfDefinedStoragePools</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn)
<span class="type">int</span>	<a href="#virConnectNumOfStoragePools">virConnectNumOfStoragePools</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn)
<span class="type">int</span>	<a href="#virConnectStoragePoolEventDeregisterAny">virConnectStoragePoolEventDeregisterAny</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>						 <span class="type">int</span> callbackID)
<span class="keyword">typedef</span> <a href="#virConnectStoragePoolEventGenericCallback">virConnectStoragePoolEventGenericCallback</a>
<span class="type">void</span>	<a href="#virConnectStoragePoolEventGenericCallback">virConnectStoragePoolEventGenericCallback</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>							 <span class="type">void *</span> opaque)

<span class="keyword">typedef</span> <a href="#virConnectStoragePoolEventLifecycleCallback">virConnectStoragePoolEventLifecycleCallback</a>
<span class="type">void</span>	<a href="#virConnectStoragePoolEventLifecycleCallback">virConnectStoragePoolEventLifecycleCallback</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>							 <span class="type">int</span> event, <br/>							 <span class="type">int</span> detail, <br/>							 <span class="type">void *</span> opaque)

<span class="type">int</span>	<a href="#virConnectStoragePoolEventRegisterAny">virConnectStoragePoolEventRegisterAny</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>						 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>						 <span class="type">int</span> eventID, <br/>						 <span class="type"><a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventGenericCallback">virConnectStoragePoolEventGenericCallback</a></span> cb, <br/>						 <span class="type">void *</span> opaque, <br/>						 <span class="type"><a href="libvirt-libvirt-common.html#virFreeCallback">virFreeCallback</a></span> freecb)
<span class="type">int</span>	<a href="#virStoragePoolBuild">virStoragePoolBuild</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStoragePoolCreate">virStoragePoolCreate</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	<a href="#virStoragePoolCreateXML">virStoragePoolCreateXML</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>						 <span class="type">const char *</span> xmlDesc, <br/>						 <span class="type">unsigned int</span> flags)
<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	<a href="#virStoragePoolDefineXML">virStoragePoolDefineXML</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>						 <span class="type">const char *</span> xml, <br/>						 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStoragePoolDelete">virStoragePoolDelete</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStoragePoolDestroy">virStoragePoolDestroy</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolFree">virStoragePoolFree</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolGetAutostart">virStoragePoolGetAutostart</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">int *</span> autostart)
<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span>	<a href="#virStoragePoolGetConnect">virStoragePoolGetConnect</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolGetInfo">virStoragePoolGetInfo</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolInfoPtr">virStoragePoolInfoPtr</a></span> info)
<span class="type">const char *</span>	<a href="#virStoragePoolGetName">virStoragePoolGetName</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolGetUUID">virStoragePoolGetUUID</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">unsigned char *</span> uuid)
<span class="type">int</span>	<a href="#virStoragePoolGetUUIDString">virStoragePoolGetUUIDString</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">char *</span> buf)
<span class="type">char *</span>	<a href="#virStoragePoolGetXMLDesc">virStoragePoolGetXMLDesc</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStoragePoolIsActive">virStoragePoolIsActive</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolIsPersistent">virStoragePoolIsPersistent</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolListAllVolumes">virStoragePoolListAllVolumes</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a> **</span> vols, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStoragePoolListVolumes">virStoragePoolListVolumes</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">char ** const</span> names, <br/>					 <span class="type">int</span> maxnames)
<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	<a href="#virStoragePoolLookupByName">virStoragePoolLookupByName</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type">const char *</span> name)
<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	<a href="#virStoragePoolLookupByTargetPath">virStoragePoolLookupByTargetPath</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type">const char *</span> path)
<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	<a href="#virStoragePoolLookupByUUID">virStoragePoolLookupByUUID</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type">const unsigned char *</span> uuid)
<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	<a href="#virStoragePoolLookupByUUIDString">virStoragePoolLookupByUUIDString</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type">const char *</span> uuidstr)
<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	<a href="#virStoragePoolLookupByVolume">virStoragePoolLookupByVolume</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)
<span class="type">int</span>	<a href="#virStoragePoolNumOfVolumes">virStoragePoolNumOfVolumes</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolRef">virStoragePoolRef</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type">int</span>	<a href="#virStoragePoolRefresh">virStoragePoolRefresh</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStoragePoolSetAutostart">virStoragePoolSetAutostart</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>					 <span class="type">int</span> autostart)
<span class="type">int</span>	<a href="#virStoragePoolUndefine">virStoragePoolUndefine</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)
<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	<a href="#virStorageVolCreateXML">virStorageVolCreateXML</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>						 <span class="type">const char *</span> xmlDesc, <br/>						 <span class="type">unsigned int</span> flags)
<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	<a href="#virStorageVolCreateXMLFrom">virStorageVolCreateXMLFrom</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>							 <span class="type">const char *</span> xmlDesc, <br/>							 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> clonevol, <br/>							 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStorageVolDelete">virStorageVolDelete</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStorageVolDownload">virStorageVolDownload</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type"><a href="libvirt-libvirt-host.html#virStreamPtr">virStreamPtr</a></span> stream, <br/>					 <span class="type">unsigned long long</span> offset, <br/>					 <span class="type">unsigned long long</span> length, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStorageVolFree">virStorageVolFree</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)
<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span>	<a href="#virStorageVolGetConnect">virStorageVolGetConnect</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)
<span class="type">int</span>	<a href="#virStorageVolGetInfo">virStorageVolGetInfo</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolInfoPtr">virStorageVolInfoPtr</a></span> info)
<span class="type">int</span>	<a href="#virStorageVolGetInfoFlags">virStorageVolGetInfoFlags</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolInfoPtr">virStorageVolInfoPtr</a></span> info, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">const char *</span>	<a href="#virStorageVolGetKey">virStorageVolGetKey</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)
<span class="type">const char *</span>	<a href="#virStorageVolGetName">virStorageVolGetName</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)
<span class="type">char *</span>	<a href="#virStorageVolGetPath">virStorageVolGetPath</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)
<span class="type">char *</span>	<a href="#virStorageVolGetXMLDesc">virStorageVolGetXMLDesc</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	<a href="#virStorageVolLookupByKey">virStorageVolLookupByKey</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type">const char *</span> key)
<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	<a href="#virStorageVolLookupByName">virStorageVolLookupByName</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool, <br/>							 <span class="type">const char *</span> name)
<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	<a href="#virStorageVolLookupByPath">virStorageVolLookupByPath</a>	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn, <br/>							 <span class="type">const char *</span> path)
<span class="type">int</span>	<a href="#virStorageVolRef">virStorageVolRef</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)
<span class="type">int</span>	<a href="#virStorageVolResize">virStorageVolResize</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type">unsigned long long</span> capacity, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStorageVolUpload">virStorageVolUpload</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type"><a href="libvirt-libvirt-host.html#virStreamPtr">virStreamPtr</a></span> stream, <br/>					 <span class="type">unsigned long long</span> offset, <br/>					 <span class="type">unsigned long long</span> length, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStorageVolWipe">virStorageVolWipe</a>		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type">unsigned int</span> flags)
<span class="type">int</span>	<a href="#virStorageVolWipePattern">virStorageVolWipePattern</a>	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol, <br/>					 <span class="type">unsigned int</span> algorithm, <br/>					 <span class="type">unsigned int</span> flags)
</pre>
        <h2>Description</h2>
        <h3>
          <a name="macros">Macros</a>
        </h3>
        <h3>
          <a name="VIR_STORAGE_POOL_EVENT_CALLBACK">
            <code>VIR_STORAGE_POOL_EVENT_CALLBACK</code>
          </a>
        </h3>
        <pre class="api"><span class="directive">#define</span> VIR_STORAGE_POOL_EVENT_CALLBACK</pre>
        <div class="description">
          <p>Used to cast the event specific callback into the generic one for use for <a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventRegisterAny">virConnectStoragePoolEventRegisterAny</a>()</p>
        </div>
        <h3>
          <a name="types">Types</a>
        </h3>
        <h3>
          <a name="virConnectListAllStoragePoolsFlags">
            <code>virConnectListAllStoragePoolsFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virConnectListAllStoragePoolsFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE">VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE</a>
              </td>
              <td> = </td>
              <td colspan="2">1</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_ACTIVE">VIR_CONNECT_LIST_STORAGE_POOLS_ACTIVE</a>
              </td>
              <td> = </td>
              <td colspan="2">2</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_PERSISTENT">VIR_CONNECT_LIST_STORAGE_POOLS_PERSISTENT</a>
              </td>
              <td> = </td>
              <td colspan="2">4</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_TRANSIENT">VIR_CONNECT_LIST_STORAGE_POOLS_TRANSIENT</a>
              </td>
              <td> = </td>
              <td colspan="2">8</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_AUTOSTART">VIR_CONNECT_LIST_STORAGE_POOLS_AUTOSTART</a>
              </td>
              <td> = </td>
              <td colspan="2">16</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_NO_AUTOSTART">VIR_CONNECT_LIST_STORAGE_POOLS_NO_AUTOSTART</a>
              </td>
              <td> = </td>
              <td>32</td>
              <td>
                <div class="comment">List pools by type</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_DIR">VIR_CONNECT_LIST_STORAGE_POOLS_DIR</a>
              </td>
              <td> = </td>
              <td colspan="2">64</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_FS">VIR_CONNECT_LIST_STORAGE_POOLS_FS</a>
              </td>
              <td> = </td>
              <td colspan="2">128</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_NETFS">VIR_CONNECT_LIST_STORAGE_POOLS_NETFS</a>
              </td>
              <td> = </td>
              <td colspan="2">256</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_LOGICAL">VIR_CONNECT_LIST_STORAGE_POOLS_LOGICAL</a>
              </td>
              <td> = </td>
              <td colspan="2">512</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_DISK">VIR_CONNECT_LIST_STORAGE_POOLS_DISK</a>
              </td>
              <td> = </td>
              <td colspan="2">1024</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_ISCSI">VIR_CONNECT_LIST_STORAGE_POOLS_ISCSI</a>
              </td>
              <td> = </td>
              <td colspan="2">2048</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_SCSI">VIR_CONNECT_LIST_STORAGE_POOLS_SCSI</a>
              </td>
              <td> = </td>
              <td colspan="2">4096</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_MPATH">VIR_CONNECT_LIST_STORAGE_POOLS_MPATH</a>
              </td>
              <td> = </td>
              <td colspan="2">8192</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_RBD">VIR_CONNECT_LIST_STORAGE_POOLS_RBD</a>
              </td>
              <td> = </td>
              <td colspan="2">16384</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_SHEEPDOG">VIR_CONNECT_LIST_STORAGE_POOLS_SHEEPDOG</a>
              </td>
              <td> = </td>
              <td colspan="2">32768</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_GLUSTER">VIR_CONNECT_LIST_STORAGE_POOLS_GLUSTER</a>
              </td>
              <td> = </td>
              <td colspan="2">65536</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_ZFS">VIR_CONNECT_LIST_STORAGE_POOLS_ZFS</a>
              </td>
              <td> = </td>
              <td colspan="2">131072</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_CONNECT_LIST_STORAGE_POOLS_VSTORAGE">VIR_CONNECT_LIST_STORAGE_POOLS_VSTORAGE</a>
              </td>
              <td> = </td>
              <td colspan="2">262144</td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStoragePool">
            <code>virStoragePool</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">struct </span>virStoragePool {
</pre>
          <div class="undisclosed">The content of this structure is not made public by the API</div>
          <pre>
}
</pre>
        </div>
        <h3>
          <a name="virStoragePoolBuildFlags">
            <code>virStoragePoolBuildFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStoragePoolBuildFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_BUILD_NEW">VIR_STORAGE_POOL_BUILD_NEW</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">Regular build from scratch</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_BUILD_REPAIR">VIR_STORAGE_POOL_BUILD_REPAIR</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Repair / reinitialize</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_BUILD_RESIZE">VIR_STORAGE_POOL_BUILD_RESIZE</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">Extend existing pool</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_BUILD_NO_OVERWRITE">VIR_STORAGE_POOL_BUILD_NO_OVERWRITE</a>
              </td>
              <td> = </td>
              <td>4</td>
              <td>
                <div class="comment">Do not overwrite existing pool</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_BUILD_OVERWRITE">VIR_STORAGE_POOL_BUILD_OVERWRITE</a>
              </td>
              <td> = </td>
              <td>8</td>
              <td>
                <div class="comment">Overwrite data</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStoragePoolCreateFlags">
            <code>virStoragePoolCreateFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStoragePoolCreateFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_CREATE_NORMAL">VIR_STORAGE_POOL_CREATE_NORMAL</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">Create the pool and perform pool build without any flags</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_CREATE_WITH_BUILD">VIR_STORAGE_POOL_CREATE_WITH_BUILD</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Create the pool and perform pool build using the <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_BUILD_OVERWRITE">VIR_STORAGE_POOL_BUILD_OVERWRITE</a> flag. This is mutually exclusive to <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_CREATE_WITH_BUILD_NO_OVERWRITE">VIR_STORAGE_POOL_CREATE_WITH_BUILD_NO_OVERWRITE</a></div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_CREATE_WITH_BUILD_OVERWRITE">VIR_STORAGE_POOL_CREATE_WITH_BUILD_OVERWRITE</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">Create the pool and perform pool build using the <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_BUILD_NO_OVERWRITE">VIR_STORAGE_POOL_BUILD_NO_OVERWRITE</a> flag. This is mutually exclusive to <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_CREATE_WITH_BUILD_OVERWRITE">VIR_STORAGE_POOL_CREATE_WITH_BUILD_OVERWRITE</a></div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_CREATE_WITH_BUILD_NO_OVERWRITE">VIR_STORAGE_POOL_CREATE_WITH_BUILD_NO_OVERWRITE</a>
              </td>
              <td> = </td>
              <td colspan="2">4</td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStoragePoolDeleteFlags">
            <code>virStoragePoolDeleteFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStoragePoolDeleteFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_DELETE_NORMAL">VIR_STORAGE_POOL_DELETE_NORMAL</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">Delete metadata only (fast)</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_DELETE_ZEROED">VIR_STORAGE_POOL_DELETE_ZEROED</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Clear all data to zeros (slow)</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStoragePoolEventID">
            <code>virStoragePoolEventID</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStoragePoolEventID {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_ID_LIFECYCLE">VIR_STORAGE_POOL_EVENT_ID_LIFECYCLE</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">
                  <a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventLifecycleCallback">virConnectStoragePoolEventLifecycleCallback</a>
                </div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_ID_REFRESH">VIR_STORAGE_POOL_EVENT_ID_REFRESH</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">
                  <a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventGenericCallback">virConnectStoragePoolEventGenericCallback</a>
                </div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_ID_LAST">VIR_STORAGE_POOL_EVENT_ID_LAST</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">NB: this enum value will increase over time as new events are added to the libvirt API. It reflects the last event ID supported by this version of the libvirt API.</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStoragePoolEventLifecycleType">
            <code>virStoragePoolEventLifecycleType</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStoragePoolEventLifecycleType {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_DEFINED">VIR_STORAGE_POOL_EVENT_DEFINED</a>
              </td>
              <td> = </td>
              <td colspan="2">0</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_UNDEFINED">VIR_STORAGE_POOL_EVENT_UNDEFINED</a>
              </td>
              <td> = </td>
              <td colspan="2">1</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_STARTED">VIR_STORAGE_POOL_EVENT_STARTED</a>
              </td>
              <td> = </td>
              <td colspan="2">2</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_STOPPED">VIR_STORAGE_POOL_EVENT_STOPPED</a>
              </td>
              <td> = </td>
              <td colspan="2">3</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_CREATED">VIR_STORAGE_POOL_EVENT_CREATED</a>
              </td>
              <td> = </td>
              <td colspan="2">4</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_DELETED">VIR_STORAGE_POOL_EVENT_DELETED</a>
              </td>
              <td> = </td>
              <td colspan="2">5</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_EVENT_LAST">VIR_STORAGE_POOL_EVENT_LAST</a>
              </td>
              <td> = </td>
              <td colspan="2">6</td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStoragePoolInfo">
            <code>virStoragePoolInfo</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">struct </span>virStoragePoolInfo {
</pre>
          <table>
            <tr>
              <td>
                <span class="type">int</span>
              </td>
              <td>state</td>
              <td>
                <div class="comment"><a href="libvirt-libvirt-storage.html#virStoragePoolState">virStoragePoolState</a> flags</div>
              </td>
            </tr>
            <tr>
              <td>
                <span class="type">unsigned long long</span>
              </td>
              <td>capacity</td>
              <td>
                <div class="comment">Logical size bytes</div>
              </td>
            </tr>
            <tr>
              <td>
                <span class="type">unsigned long long</span>
              </td>
              <td>allocation</td>
              <td>
                <div class="comment">Current allocation bytes</div>
              </td>
            </tr>
            <tr>
              <td>
                <span class="type">unsigned long long</span>
              </td>
              <td>available</td>
              <td>
                <div class="comment">Remaining free space bytes</div>
              </td>
            </tr>
          </table>
          <pre>
}
</pre>
        </div>
        <h3>
          <a name="virStoragePoolState">
            <code>virStoragePoolState</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStoragePoolState {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_INACTIVE">VIR_STORAGE_POOL_INACTIVE</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">Not running</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_BUILDING">VIR_STORAGE_POOL_BUILDING</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Initializing pool, not available</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_RUNNING">VIR_STORAGE_POOL_RUNNING</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">Running normally</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_DEGRADED">VIR_STORAGE_POOL_DEGRADED</a>
              </td>
              <td> = </td>
              <td>3</td>
              <td>
                <div class="comment">Running degraded</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_INACCESSIBLE">VIR_STORAGE_POOL_INACCESSIBLE</a>
              </td>
              <td> = </td>
              <td>4</td>
              <td>
                <div class="comment">Running, but not accessible</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_POOL_STATE_LAST">VIR_STORAGE_POOL_STATE_LAST</a>
              </td>
              <td> = </td>
              <td colspan="2">5</td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVol">
            <code>virStorageVol</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">struct </span>virStorageVol {
</pre>
          <div class="undisclosed">The content of this structure is not made public by the API</div>
          <pre>
}
</pre>
        </div>
        <h3>
          <a name="virStorageVolCreateFlags">
            <code>virStorageVolCreateFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolCreateFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA">VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA</a>
              </td>
              <td> = </td>
              <td colspan="2">1</td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_CREATE_REFLINK">VIR_STORAGE_VOL_CREATE_REFLINK</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">perform a btrfs lightweight copy</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVolDeleteFlags">
            <code>virStorageVolDeleteFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolDeleteFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_DELETE_NORMAL">VIR_STORAGE_VOL_DELETE_NORMAL</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">Delete metadata only (fast)</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_DELETE_ZEROED">VIR_STORAGE_VOL_DELETE_ZEROED</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Clear all data to zeros (slow)</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_DELETE_WITH_SNAPSHOTS">VIR_STORAGE_VOL_DELETE_WITH_SNAPSHOTS</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">Force removal of volume, even if in use</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVolDownloadFlags">
            <code>virStorageVolDownloadFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolDownloadFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_DOWNLOAD_SPARSE_STREAM">VIR_STORAGE_VOL_DOWNLOAD_SPARSE_STREAM</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Use sparse stream</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVolInfo">
            <code>virStorageVolInfo</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">struct </span>virStorageVolInfo {
</pre>
          <table>
            <tr>
              <td>
                <span class="type">int</span>
              </td>
              <td>type</td>
              <td>
                <div class="comment"><a href="libvirt-libvirt-storage.html#virStorageVolType">virStorageVolType</a> flags</div>
              </td>
            </tr>
            <tr>
              <td>
                <span class="type">unsigned long long</span>
              </td>
              <td>capacity</td>
              <td>
                <div class="comment">Logical size bytes</div>
              </td>
            </tr>
            <tr>
              <td>
                <span class="type">unsigned long long</span>
              </td>
              <td>allocation</td>
              <td>
                <div class="comment">Current allocation bytes</div>
              </td>
            </tr>
          </table>
          <pre>
}
</pre>
        </div>
        <h3>
          <a name="virStorageVolInfoFlags">
            <code>virStorageVolInfoFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolInfoFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_USE_ALLOCATION">VIR_STORAGE_VOL_USE_ALLOCATION</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">Return the physical size in allocation</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_GET_PHYSICAL">VIR_STORAGE_VOL_GET_PHYSICAL</a>
              </td>
              <td> = </td>
              <td colspan="2">1</td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVolResizeFlags">
            <code>virStorageVolResizeFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolResizeFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_RESIZE_ALLOCATE">VIR_STORAGE_VOL_RESIZE_ALLOCATE</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">force allocation of new size</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_RESIZE_DELTA">VIR_STORAGE_VOL_RESIZE_DELTA</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">size is relative to current</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_RESIZE_SHRINK">VIR_STORAGE_VOL_RESIZE_SHRINK</a>
              </td>
              <td> = </td>
              <td>4</td>
              <td>
                <div class="comment">allow decrease in capacity</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVolType">
            <code>virStorageVolType</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolType {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_FILE">VIR_STORAGE_VOL_FILE</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">Regular file based volumes</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_BLOCK">VIR_STORAGE_VOL_BLOCK</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Block based volumes</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_DIR">VIR_STORAGE_VOL_DIR</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">Directory-passthrough based volume</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_NETWORK">VIR_STORAGE_VOL_NETWORK</a>
              </td>
              <td> = </td>
              <td>3</td>
              <td>
                <div class="comment">Network volumes like RBD (RADOS Block Device)</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_NETDIR">VIR_STORAGE_VOL_NETDIR</a>
              </td>
              <td> = </td>
              <td>4</td>
              <td>
                <div class="comment">Network accessible directory that can contain other network volumes</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_PLOOP">VIR_STORAGE_VOL_PLOOP</a>
              </td>
              <td> = </td>
              <td>5</td>
              <td>
                <div class="comment">Ploop based volumes</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_LAST">VIR_STORAGE_VOL_LAST</a>
              </td>
              <td> = </td>
              <td colspan="2">6</td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVolUploadFlags">
            <code>virStorageVolUploadFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolUploadFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_UPLOAD_SPARSE_STREAM">VIR_STORAGE_VOL_UPLOAD_SPARSE_STREAM</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">Use sparse stream</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageVolWipeAlgorithm">
            <code>virStorageVolWipeAlgorithm</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageVolWipeAlgorithm {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_ZERO">VIR_STORAGE_VOL_WIPE_ALG_ZERO</a>
              </td>
              <td> = </td>
              <td>0</td>
              <td>
                <div class="comment">1-pass, all zeroes</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_NNSA">VIR_STORAGE_VOL_WIPE_ALG_NNSA</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">4-pass NNSA Policy Letter NAP-14.1-C (XVI-8)</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_DOD">VIR_STORAGE_VOL_WIPE_ALG_DOD</a>
              </td>
              <td> = </td>
              <td>2</td>
              <td>
                <div class="comment">4-pass DoD 5220.22-M section 8-306 procedure</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_BSI">VIR_STORAGE_VOL_WIPE_ALG_BSI</a>
              </td>
              <td> = </td>
              <td>3</td>
              <td>
                <div class="comment">9-pass method recommended by the German Center of Security in Information Technologies</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_GUTMANN">VIR_STORAGE_VOL_WIPE_ALG_GUTMANN</a>
              </td>
              <td> = </td>
              <td>4</td>
              <td>
                <div class="comment">The canonical 35-pass sequence</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_SCHNEIER">VIR_STORAGE_VOL_WIPE_ALG_SCHNEIER</a>
              </td>
              <td> = </td>
              <td>5</td>
              <td>
                <div class="comment">7-pass method described by Bruce Schneier in "Applied Cryptography" (1996)</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_PFITZNER7">VIR_STORAGE_VOL_WIPE_ALG_PFITZNER7</a>
              </td>
              <td> = </td>
              <td>6</td>
              <td>
                <div class="comment">7-pass random</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_PFITZNER33">VIR_STORAGE_VOL_WIPE_ALG_PFITZNER33</a>
              </td>
              <td> = </td>
              <td>7</td>
              <td>
                <div class="comment">33-pass random</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_RANDOM">VIR_STORAGE_VOL_WIPE_ALG_RANDOM</a>
              </td>
              <td> = </td>
              <td>8</td>
              <td>
                <div class="comment">1-pass random</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_TRIM">VIR_STORAGE_VOL_WIPE_ALG_TRIM</a>
              </td>
              <td> = </td>
              <td>9</td>
              <td>
                <div class="comment">1-pass, trim all data on the volume by using TRIM or DISCARD</div>
              </td>
            </tr>
            <tr>
              <td>
                <a name="VIR_STORAGE_VOL_WIPE_ALG_LAST">VIR_STORAGE_VOL_WIPE_ALG_LAST</a>
              </td>
              <td> = </td>
              <td>10</td>
              <td>
                <div class="comment">NB: this enum value will increase over time as new algorithms are added to the libvirt API. It reflects the last algorithm supported by this version of the libvirt API.</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="virStorageXMLFlags">
            <code>virStorageXMLFlags</code>
          </a>
        </h3>
        <div class="api">
          <pre><span class="keyword">enum</span> virStorageXMLFlags {
</pre>
          <table>
            <tr>
              <td>
                <a name="VIR_STORAGE_XML_INACTIVE">VIR_STORAGE_XML_INACTIVE</a>
              </td>
              <td> = </td>
              <td>1</td>
              <td>
                <div class="comment">dump inactive pool/volume information</div>
              </td>
            </tr>
          </table>
          <pre>}
</pre>
        </div>
        <h3>
          <a name="functions">Functions</a>
        </h3>
        <h3>
          <a name="virConnectFindStoragePoolSources">
            <code>virConnectFindStoragePoolSources</code>
          </a>
        </h3>
        <pre class="api"><span class="type">char *</span>	virConnectFindStoragePoolSources	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
						 <span class="type">const char *</span> type,
						 <span class="type">const char *</span> srcSpec,
						 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Talks to a storage backend and attempts to auto-discover the set of available storage pool sources. e.g. For iSCSI this would be a set of iSCSI targets. For NFS this would be a list of exported paths. The srcSpec (optional for some storage pool types, e.g. local ones) is an instance of the storage pool's source element specifying where to look for the pools.</p>
          <p>srcSpec is not required for some types (e.g., those querying local storage resources only)</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>type</dt>
          <dd>type of storage pool sources to discover</dd>
          <dt>srcSpec</dt>
          <dd>XML document specifying discovery source</dd>
          <dt>flags</dt>
          <dd>extra flags; not used yet, so callers should always pass 0</dd>
          <dt>Returns</dt>
          <dd>an xml document consisting of a SourceList element containing a source document appropriate to the given pool type for each discovered source.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virConnectListAllStoragePools">
            <code>virConnectListAllStoragePools</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virConnectListAllStoragePools	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
					 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> **</span> pools,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Collect the list of storage pools, and allocate an array to store those objects. This API solves the race inherent between <a href="libvirt-libvirt-storage.html#virConnectListStoragePools">virConnectListStoragePools</a> and <a href="libvirt-libvirt-storage.html#virConnectListDefinedStoragePools">virConnectListDefinedStoragePools</a>.</p>
          <p>Normally, all storage pools are returned; however, @flags can be used to filter the results for a smaller list of targeted pools. The valid flags are divided into groups, where each group contains bits that describe mutually exclusive attributes of a pool, and where all bits within a group describe all possible pools.</p>
          <p>The first group of @flags is <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_ACTIVE">VIR_CONNECT_LIST_STORAGE_POOLS_ACTIVE</a> (online) and <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE">VIR_CONNECT_LIST_STORAGE_POOLS_INACTIVE</a> (offline) to filter the pools by state.</p>
          <p>The second group of @flags is VIR_CONNECT_LIST_STORAGE_POOLS_PERSITENT (defined) and <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_TRANSIENT">VIR_CONNECT_LIST_STORAGE_POOLS_TRANSIENT</a> (running but not defined), to filter the pools by whether they have persistent config or not.</p>
          <p>The third group of @flags is <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_AUTOSTART">VIR_CONNECT_LIST_STORAGE_POOLS_AUTOSTART</a> and <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_NO_AUTOSTART">VIR_CONNECT_LIST_STORAGE_POOLS_NO_AUTOSTART</a>, to filter the pools by whether they are marked as autostart or not.</p>
          <p>The last group of @flags is provided to filter the pools by the types, the flags include: <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_DIR">VIR_CONNECT_LIST_STORAGE_POOLS_DIR</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_FS">VIR_CONNECT_LIST_STORAGE_POOLS_FS</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_NETFS">VIR_CONNECT_LIST_STORAGE_POOLS_NETFS</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_LOGICAL">VIR_CONNECT_LIST_STORAGE_POOLS_LOGICAL</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_DISK">VIR_CONNECT_LIST_STORAGE_POOLS_DISK</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_ISCSI">VIR_CONNECT_LIST_STORAGE_POOLS_ISCSI</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_SCSI">VIR_CONNECT_LIST_STORAGE_POOLS_SCSI</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_MPATH">VIR_CONNECT_LIST_STORAGE_POOLS_MPATH</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_RBD">VIR_CONNECT_LIST_STORAGE_POOLS_RBD</a> <a href="libvirt-libvirt-storage.html#VIR_CONNECT_LIST_STORAGE_POOLS_SHEEPDOG">VIR_CONNECT_LIST_STORAGE_POOLS_SHEEPDOG</a></p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>Pointer to the hypervisor connection.</dd>
          <dt>pools</dt>
          <dd>Pointer to a variable to store the array containing storage pool objects or NULL if the list is not required (just returns number of pools).</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virConnectListAllStoragePoolsFlags">virConnectListAllStoragePoolsFlags</a>.</dd>
          <dt>Returns</dt>
          <dd>the number of storage pools found or -1 and sets @pools to NULL in case of error. On success, the array stored into @pools is guaranteed to have an extra allocated element set to NULL but not included in the return count, to make iteration easier. The caller is responsible for calling <a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a>() on each array element, then calling free() on @pools.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virConnectListDefinedStoragePools">
            <code>virConnectListDefinedStoragePools</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virConnectListDefinedStoragePools	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
						 <span class="type">char ** const</span> names,
						 <span class="type">int</span> maxnames)</pre>
        <div class="description">
          <p>Provides the list of names of inactive storage pools up to maxnames. If there are more than maxnames, the remaining names will be silently ignored.</p>
          <p>For more control over the results, see <a href="libvirt-libvirt-storage.html#virConnectListAllStoragePools">virConnectListAllStoragePools</a>().</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>names</dt>
          <dd>array of char * to fill with pool names (allocated by caller)</dd>
          <dt>maxnames</dt>
          <dd>size of the names array</dd>
          <dt>Returns</dt>
          <dd>the number of names provided in the array or -1 in case of error. Note that this command is inherently racy; a pool can be defined between a call to <a href="libvirt-libvirt-storage.html#virConnectNumOfDefinedStoragePools">virConnectNumOfDefinedStoragePools</a>() and this call; you are only guaranteed that all currently defined pools were listed if the return is less than @maxnames. The client must call free() on each returned name.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virConnectListStoragePools">
            <code>virConnectListStoragePools</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virConnectListStoragePools	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
					 <span class="type">char ** const</span> names,
					 <span class="type">int</span> maxnames)</pre>
        <div class="description">
          <p>Provides the list of names of active storage pools up to maxnames. If there are more than maxnames, the remaining names will be silently ignored.</p>
          <p>For more control over the results, see <a href="libvirt-libvirt-storage.html#virConnectListAllStoragePools">virConnectListAllStoragePools</a>().</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>names</dt>
          <dd>array of char * to fill with pool names (allocated by caller)</dd>
          <dt>maxnames</dt>
          <dd>size of the names array</dd>
          <dt>Returns</dt>
          <dd>the number of pools found or -1 in case of error. Note that this command is inherently racy; a pool can be started between a call to <a href="libvirt-libvirt-storage.html#virConnectNumOfStoragePools">virConnectNumOfStoragePools</a>() and this call; you are only guaranteed that all currently active pools were listed if the return is less than @maxnames. The client must call free() on each returned name.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virConnectNumOfDefinedStoragePools">
            <code>virConnectNumOfDefinedStoragePools</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virConnectNumOfDefinedStoragePools	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn)</pre>
        <div class="description">
          <p>Provides the number of inactive storage pools</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>Returns</dt>
          <dd>the number of pools found, or -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virConnectNumOfStoragePools">
            <code>virConnectNumOfStoragePools</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virConnectNumOfStoragePools	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn)</pre>
        <div class="description">
          <p>Provides the number of active storage pools</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>Returns</dt>
          <dd>the number of pools found, or -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virConnectStoragePoolEventDeregisterAny">
            <code>virConnectStoragePoolEventDeregisterAny</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virConnectStoragePoolEventDeregisterAny	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
						 <span class="type">int</span> callbackID)</pre>
        <div class="description">
          <p>Removes an event callback. The callbackID parameter should be the value obtained from a previous <a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventRegisterAny">virConnectStoragePoolEventRegisterAny</a>() method.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to the connection</dd>
          <dt>callbackID</dt>
          <dd>the callback identifier</dd>
          <dt>Returns</dt>
          <dd>0 on success, -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virConnectStoragePoolEventGenericCallback">
            <code>virConnectStoragePoolEventGenericCallback</code>
          </a>
        </h3>
        <pre class="api"><span class="keyword">typedef</span> <span class="type">void</span>	(*virConnectStoragePoolEventGenericCallback)	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
							 <span class="type">void *</span> opaque)
</pre>
        <div class="description">
          <p>A generic storage pool event callback handler, for use with <a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventRegisterAny">virConnectStoragePoolEventRegisterAny</a>(). Specific events usually have a customization with extra parameters, often with @opaque being passed in a different parameter position; use <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_EVENT_CALLBACK">VIR_STORAGE_POOL_EVENT_CALLBACK</a>() when registering an appropriate handler.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>the connection pointer</dd>
          <dt>pool</dt>
          <dd>the pool pointer</dd>
          <dt>opaque</dt>
          <dd>application specified data</dd>
        </dl>
        <br/>
        <h3>
          <a name="virConnectStoragePoolEventLifecycleCallback">
            <code>virConnectStoragePoolEventLifecycleCallback</code>
          </a>
        </h3>
        <pre class="api"><span class="keyword">typedef</span> <span class="type">void</span>	(*virConnectStoragePoolEventLifecycleCallback)	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
							 <span class="type">int</span> event,
							 <span class="type">int</span> detail,
							 <span class="type">void *</span> opaque)
</pre>
        <div class="description">
          <p>This callback is called when a pool lifecycle action is performed, like start or stop.</p>
          <p>The callback signature to use when registering for an event of type <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_EVENT_ID_LIFECYCLE">VIR_STORAGE_POOL_EVENT_ID_LIFECYCLE</a> with <a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventRegisterAny">virConnectStoragePoolEventRegisterAny</a>()</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>connection object</dd>
          <dt>pool</dt>
          <dd>pool on which the event occurred</dd>
          <dt>event</dt>
          <dd>The specific virStoragePoolEventLifeCycleType which occurred</dd>
          <dt>detail</dt>
          <dd>contains some details on the reason of the event.</dd>
          <dt>opaque</dt>
          <dd>application specified data</dd>
        </dl>
        <br/>
        <h3>
          <a name="virConnectStoragePoolEventRegisterAny">
            <code>virConnectStoragePoolEventRegisterAny</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virConnectStoragePoolEventRegisterAny	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
						 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
						 <span class="type">int</span> eventID,
						 <span class="type"><a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventGenericCallback">virConnectStoragePoolEventGenericCallback</a></span> cb,
						 <span class="type">void *</span> opaque,
						 <span class="type"><a href="libvirt-libvirt-common.html#virFreeCallback">virFreeCallback</a></span> freecb)</pre>
        <div class="description">
          <p>Adds a callback to receive notifications of arbitrary storage pool events occurring on a storage pool. This function requires that an event loop has been previously registered with <a href="libvirt-libvirt-event.html#virEventRegisterImpl">virEventRegisterImpl</a>() or <a href="libvirt-libvirt-event.html#virEventRegisterDefaultImpl">virEventRegisterDefaultImpl</a>().</p>
          <p>If @pool is NULL, then events will be monitored for any storage pool. If @pool is non-NULL, then only the specific storage pool will be monitored.</p>
          <p>Most types of events have a callback providing a custom set of parameters for the event. When registering an event, it is thus necessary to use the <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_EVENT_CALLBACK">VIR_STORAGE_POOL_EVENT_CALLBACK</a>() macro to cast the supplied function pointer to match the signature of this method.</p>
          <p>The <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object handle passed into the callback upon delivery of an event is only valid for the duration of execution of the callback. If the callback wishes to keep the storage pool object after the callback returns, it shall take a reference to it, by calling <a href="libvirt-libvirt-storage.html#virStoragePoolRef">virStoragePoolRef</a>(). The reference can be released once the object is no longer required by calling <a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a>().</p>
          <p>The return value from this method is a positive integer identifier for the callback. To unregister a callback, this callback ID should be passed to the <a href="libvirt-libvirt-storage.html#virConnectStoragePoolEventDeregisterAny">virConnectStoragePoolEventDeregisterAny</a>() method.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to the connection</dd>
          <dt>pool</dt>
          <dd>pointer to the storage pool</dd>
          <dt>eventID</dt>
          <dd>the event type to receive</dd>
          <dt>cb</dt>
          <dd>callback to the function handling network events</dd>
          <dt>opaque</dt>
          <dd>opaque data to pass on to the callback</dd>
          <dt>freecb</dt>
          <dd>optional function to deallocate opaque when not used anymore</dd>
          <dt>Returns</dt>
          <dd>a callback identifier on success, -1 on failure.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolBuild">
            <code>virStoragePoolBuild</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolBuild		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Currently only filesystem pool accepts flags <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_BUILD_OVERWRITE">VIR_STORAGE_POOL_BUILD_OVERWRITE</a> and <a href="libvirt-libvirt-storage.html#VIR_STORAGE_POOL_BUILD_NO_OVERWRITE">VIR_STORAGE_POOL_BUILD_NO_OVERWRITE</a>.</p>
          <p>Build the underlying storage pool</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStoragePoolBuildFlags">virStoragePoolBuildFlags</a></dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 upon failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolCreate">
            <code>virStoragePoolCreate</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolCreate		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Starts an inactive storage pool</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStoragePoolCreateFlags">virStoragePoolCreateFlags</a></dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 if it could not be started</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolCreateXML">
            <code>virStoragePoolCreateXML</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	virStoragePoolCreateXML	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
						 <span class="type">const char *</span> xmlDesc,
						 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Create a new storage based on its XML description. The pool is not persistent, so its definition will disappear when it is destroyed, or if the host is restarted</p>
          <p><a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> should be used to free the resources after the storage pool object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>xmlDesc</dt>
          <dd>XML description for new pool</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStoragePoolCreateFlags">virStoragePoolCreateFlags</a></dd>
          <dt>Returns</dt>
          <dd>a <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object, or NULL if creation failed</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolDefineXML">
            <code>virStoragePoolDefineXML</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	virStoragePoolDefineXML	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
						 <span class="type">const char *</span> xml,
						 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Define an inactive persistent storage pool or modify an existing persistent one from the XML description.</p>
          <p><a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> should be used to free the resources after the storage pool object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>xml</dt>
          <dd>XML description for new pool</dd>
          <dt>flags</dt>
          <dd>extra flags; not used yet, so callers should always pass 0</dd>
          <dt>Returns</dt>
          <dd>a <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object, or NULL if creation failed</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolDelete">
            <code>virStoragePoolDelete</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolDelete		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Delete the underlying pool resources. This is a non-recoverable operation. The <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object itself is not free'd.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStoragePoolDeleteFlags">virStoragePoolDeleteFlags</a></dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 if it could not be obliterate</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolDestroy">
            <code>virStoragePoolDestroy</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolDestroy		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Destroy an active storage pool. This will deactivate the pool on the host, but keep any persistent config associated with it. If it has a persistent config it can later be restarted with <a href="libvirt-libvirt-storage.html#virStoragePoolCreate">virStoragePoolCreate</a>(). This does not free the associated <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 if it could not be destroyed</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolFree">
            <code>virStoragePoolFree</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolFree		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Free a storage pool object, releasing all memory associated with it. Does not change the state of the pool on the host.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 if it could not be free'd.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolGetAutostart">
            <code>virStoragePoolGetAutostart</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolGetAutostart	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">int *</span> autostart)</pre>
        <div class="description">
          <p>Fetches the value of the autostart flag, which determines whether the pool is automatically started at boot time</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>autostart</dt>
          <dd>location in which to store autostart flag</dd>
          <dt>Returns</dt>
          <dd>0 on success, -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolGetConnect">
            <code>virStoragePoolGetConnect</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span>	virStoragePoolGetConnect	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Provides the connection pointer associated with a storage pool. The reference counter on the connection is not increased by this call.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to a pool</dd>
          <dt>Returns</dt>
          <dd>the <a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a> or NULL in case of failure.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolGetInfo">
            <code>virStoragePoolGetInfo</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolGetInfo		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolInfoPtr">virStoragePoolInfoPtr</a></span> info)</pre>
        <div class="description">
          <p>Get volatile information about the storage pool such as free space / usage summary</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>info</dt>
          <dd>pointer at which to store info</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on failure.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolGetName">
            <code>virStoragePoolGetName</code>
          </a>
        </h3>
        <pre class="api"><span class="type">const char *</span>	virStoragePoolGetName	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Fetch the locally unique name of the storage pool</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>Returns</dt>
          <dd>the name of the pool, or NULL on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolGetUUID">
            <code>virStoragePoolGetUUID</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolGetUUID		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">unsigned char *</span> uuid)</pre>
        <div class="description">
          <p>Fetch the globally unique ID of the storage pool</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>uuid</dt>
          <dd>buffer of <a href="libvirt-libvirt-host.html#VIR_UUID_BUFLEN">VIR_UUID_BUFLEN</a> bytes in size</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on error;</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolGetUUIDString">
            <code>virStoragePoolGetUUIDString</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolGetUUIDString	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">char *</span> buf)</pre>
        <div class="description">
          <p>Fetch the globally unique ID of the storage pool as a string</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>buf</dt>
          <dd>buffer of <a href="libvirt-libvirt-host.html#VIR_UUID_STRING_BUFLEN">VIR_UUID_STRING_BUFLEN</a> bytes in size</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on error;</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolGetXMLDesc">
            <code>virStoragePoolGetXMLDesc</code>
          </a>
        </h3>
        <pre class="api"><span class="type">char *</span>	virStoragePoolGetXMLDesc	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Fetch an XML document describing all aspects of the storage pool. This is suitable for later feeding back into the <a href="libvirt-libvirt-storage.html#virStoragePoolCreateXML">virStoragePoolCreateXML</a> method.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageXMLFlags">virStorageXMLFlags</a></dd>
          <dt>Returns</dt>
          <dd>a XML document (caller frees), or NULL on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolIsActive">
            <code>virStoragePoolIsActive</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolIsActive		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Determine if the storage pool is currently running</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to the storage pool object</dd>
          <dt>Returns</dt>
          <dd>1 if running, 0 if inactive, -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolIsPersistent">
            <code>virStoragePoolIsPersistent</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolIsPersistent	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Determine if the storage pool has a persistent configuration which means it will still exist after shutting down</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to the storage pool object</dd>
          <dt>Returns</dt>
          <dd>1 if persistent, 0 if transient, -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolListAllVolumes">
            <code>virStoragePoolListAllVolumes</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolListAllVolumes	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a> **</span> vols,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Collect the list of storage volumes, and allocate an array to store those objects.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>Pointer to storage pool</dd>
          <dt>vols</dt>
          <dd>Pointer to a variable to store the array containing storage volume objects or NULL if the list is not required (just returns number of volumes).</dd>
          <dt>flags</dt>
          <dd>extra flags; not used yet, so callers should always pass 0</dd>
          <dt>Returns</dt>
          <dd>the number of storage volumes found or -1 and sets @vols to NULL in case of error. On success, the array stored into @vols is guaranteed to have an extra allocated element set to NULL but not included in the return count, to make iteration easier. The caller is responsible for calling <a href="libvirt-libvirt-storage.html#virStorageVolFree">virStorageVolFree</a>() on each array element, then calling free() on @vols.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolListVolumes">
            <code>virStoragePoolListVolumes</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolListVolumes	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">char ** const</span> names,
					 <span class="type">int</span> maxnames)</pre>
        <div class="description">
          <p>Fetch list of storage volume names, limiting to at most maxnames.</p>
          <p>To list the volume objects directly, see <a href="libvirt-libvirt-storage.html#virStoragePoolListAllVolumes">virStoragePoolListAllVolumes</a>().</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>names</dt>
          <dd>array in which to storage volume names</dd>
          <dt>maxnames</dt>
          <dd>size of names array</dd>
          <dt>Returns</dt>
          <dd>the number of names fetched, or -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolLookupByName">
            <code>virStoragePoolLookupByName</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	virStoragePoolLookupByName	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type">const char *</span> name)</pre>
        <div class="description">
          <p>Fetch a storage pool based on its unique name</p>
          <p><a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> should be used to free the resources after the storage pool object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>name</dt>
          <dd>name of pool to fetch</dd>
          <dt>Returns</dt>
          <dd>a <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object, or NULL if no matching pool is found</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolLookupByTargetPath">
            <code>virStoragePoolLookupByTargetPath</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	virStoragePoolLookupByTargetPath	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type">const char *</span> path)</pre>
        <div class="description">
          <p>Fetch a storage pool which maps to a particular target directory. If more than one pool maps to the path, it is undefined which will be returned first.</p>
          <p><a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> should be used to free the resources after the storage pool object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>path</dt>
          <dd>path at which the pool is exposed</dd>
          <dt>Returns</dt>
          <dd>a <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object, or NULL if no matching pool is found</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolLookupByUUID">
            <code>virStoragePoolLookupByUUID</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	virStoragePoolLookupByUUID	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type">const unsigned char *</span> uuid)</pre>
        <div class="description">
          <p>Fetch a storage pool based on its globally unique id</p>
          <p><a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> should be used to free the resources after the storage pool object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>uuid</dt>
          <dd>globally unique id of pool to fetch</dd>
          <dt>Returns</dt>
          <dd>a <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object, or NULL if no matching pool is found</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolLookupByUUIDString">
            <code>virStoragePoolLookupByUUIDString</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	virStoragePoolLookupByUUIDString	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type">const char *</span> uuidstr)</pre>
        <div class="description">
          <p>Fetch a storage pool based on its globally unique id</p>
          <p><a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> should be used to free the resources after the storage pool object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>uuidstr</dt>
          <dd>globally unique id of pool to fetch</dd>
          <dt>Returns</dt>
          <dd>a <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object, or NULL if no matching pool is found</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolLookupByVolume">
            <code>virStoragePoolLookupByVolume</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span>	virStoragePoolLookupByVolume	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)</pre>
        <div class="description">
          <p>Fetch a storage pool which contains a particular volume</p>
          <p><a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> should be used to free the resources after the storage pool object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>Returns</dt>
          <dd>a <a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a> object, or NULL if no matching pool is found</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolNumOfVolumes">
            <code>virStoragePoolNumOfVolumes</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolNumOfVolumes	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Fetch the number of storage volumes within a pool</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>Returns</dt>
          <dd>the number of storage pools, or -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolRef">
            <code>virStoragePoolRef</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolRef		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Increment the reference count on the pool. For each additional call to this method, there shall be a corresponding call to <a href="libvirt-libvirt-storage.html#virStoragePoolFree">virStoragePoolFree</a> to release the reference count, once the caller no longer needs the reference to this object.</p>
          <p>This method is typically useful for applications where multiple threads are using a connection, and it is required that the connection remain open until all threads have finished using it. ie, each new thread using a pool would increment the reference count.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>the pool to hold a reference on</dd>
          <dt>Returns</dt>
          <dd>0 in case of success, -1 in case of failure.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolRefresh">
            <code>virStoragePoolRefresh</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolRefresh		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Request that the pool refresh its list of volumes. This may involve communicating with a remote server, and/or initializing new devices at the OS layer</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>flags</dt>
          <dd>extra flags; not used yet, so callers should always pass 0</dd>
          <dt>Returns</dt>
          <dd>0 if the volume list was refreshed, -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolSetAutostart">
            <code>virStoragePoolSetAutostart</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolSetAutostart	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
					 <span class="type">int</span> autostart)</pre>
        <div class="description">
          <p>Configure the storage pool to be automatically started when the host machine boots.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>autostart</dt>
          <dd>whether the storage pool should be automatically started 0 or 1</dd>
          <dt>Returns</dt>
          <dd>0 on success, -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStoragePoolUndefine">
            <code>virStoragePoolUndefine</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStoragePoolUndefine		(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool)</pre>
        <div class="description">
          <p>Undefine an inactive storage pool</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>Returns</dt>
          <dd>0 on success, -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolCreateXML">
            <code>virStorageVolCreateXML</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	virStorageVolCreateXML	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
						 <span class="type">const char *</span> xmlDesc,
						 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Create a storage volume within a pool based on an XML description. Not all pools support creation of volumes.</p>
          <p>Since 1.0.1 <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA">VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA</a> in flags can be used to get higher performance with qcow2 image files which don't support full preallocation, by creating a sparse image file with metadata.</p>
          <p><a href="libvirt-libvirt-storage.html#virStorageVolFree">virStorageVolFree</a> should be used to free the resources after the storage volume object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>xmlDesc</dt>
          <dd>description of volume to create</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageVolCreateFlags">virStorageVolCreateFlags</a></dd>
          <dt>Returns</dt>
          <dd>the storage volume, or NULL on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolCreateXMLFrom">
            <code>virStorageVolCreateXMLFrom</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	virStorageVolCreateXMLFrom	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
							 <span class="type">const char *</span> xmlDesc,
							 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> clonevol,
							 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Create a storage volume in the parent pool, using the 'clonevol' volume as input. Information for the new volume (name, perms) are passed via a typical volume XML description.</p>
          <p>Since 1.0.1 <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA">VIR_STORAGE_VOL_CREATE_PREALLOC_METADATA</a> in flags can be used to get higher performance with qcow2 image files which don't support full preallocation, by creating a sparse image file with metadata.</p>
          <p><a href="libvirt-libvirt-storage.html#virStorageVolFree">virStorageVolFree</a> should be used to free the resources after the storage volume object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to parent pool for the new volume</dd>
          <dt>xmlDesc</dt>
          <dd>description of volume to create</dd>
          <dt>clonevol</dt>
          <dd>storage volume to use as input</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageVolCreateFlags">virStorageVolCreateFlags</a></dd>
          <dt>Returns</dt>
          <dd>the storage volume, or NULL on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolDelete">
            <code>virStorageVolDelete</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolDelete		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Delete the storage volume from the pool</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageVolDeleteFlags">virStorageVolDeleteFlags</a></dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolDownload">
            <code>virStorageVolDownload</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolDownload		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type"><a href="libvirt-libvirt-host.html#virStreamPtr">virStreamPtr</a></span> stream,
					 <span class="type">unsigned long long</span> offset,
					 <span class="type">unsigned long long</span> length,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Download the content of the volume as a stream. If @length is zero, then the remaining contents of the volume after @offset will be downloaded.</p>
          <p>If <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_DOWNLOAD_SPARSE_STREAM">VIR_STORAGE_VOL_DOWNLOAD_SPARSE_STREAM</a> is set in @flags effective transmission of holes is enabled. This assumes using the @stream with combination of <a href="libvirt-libvirt-stream.html#virStreamSparseRecvAll">virStreamSparseRecvAll</a>() or virStreamRecvFlags(stream, ..., flags = <a href="libvirt-libvirt-stream.html#VIR_STREAM_RECV_STOP_AT_HOLE">VIR_STREAM_RECV_STOP_AT_HOLE</a>) for honouring holes sent by server.</p>
          <p>This call sets up an asynchronous stream; subsequent use of stream APIs is necessary to transfer the actual data, determine how much data is successfully transferred, and detect any errors. The results will be unpredictable if another active stream is writing to the storage volume.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to volume to download from</dd>
          <dt>stream</dt>
          <dd>stream to use as output</dd>
          <dt>offset</dt>
          <dd>position in @vol to start reading from</dd>
          <dt>length</dt>
          <dd>limit on amount of data to download</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageVolDownloadFlags">virStorageVolDownloadFlags</a></dd>
          <dt>Returns</dt>
          <dd>0, or -1 upon error.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolFree">
            <code>virStorageVolFree</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolFree		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)</pre>
        <div class="description">
          <p>Release the storage volume handle. The underlying storage volume continues to exist.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolGetConnect">
            <code>virStorageVolGetConnect</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span>	virStorageVolGetConnect	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)</pre>
        <div class="description">
          <p>Provides the connection pointer associated with a storage volume. The reference counter on the connection is not increased by this call.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to a pool</dd>
          <dt>Returns</dt>
          <dd>the <a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a> or NULL in case of failure.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolGetInfo">
            <code>virStorageVolGetInfo</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolGetInfo		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolInfoPtr">virStorageVolInfoPtr</a></span> info)</pre>
        <div class="description">
          <p>Fetches volatile information about the storage volume such as its current allocation</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>info</dt>
          <dd>pointer at which to store info</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolGetInfoFlags">
            <code>virStorageVolGetInfoFlags</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolGetInfoFlags	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolInfoPtr">virStorageVolInfoPtr</a></span> info,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Fetches volatile information about the storage volume such as its current allocation.</p>
          <p>If the @flags argument is <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_GET_PHYSICAL">VIR_STORAGE_VOL_GET_PHYSICAL</a>, then the physical bytes used for the volume will be returned in the @info allocation field. This is useful for sparse files and certain volume file types where the physical on disk usage can be different than the calculated allocation value as is the case with qcow2 files.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>info</dt>
          <dd>pointer at which to store info</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageVolInfoFlags">virStorageVolInfoFlags</a></dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on failure</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolGetKey">
            <code>virStorageVolGetKey</code>
          </a>
        </h3>
        <pre class="api"><span class="type">const char *</span>	virStorageVolGetKey	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)</pre>
        <div class="description">
          <p>Fetch the storage volume key. This is globally unique, so the same volume will have the same key no matter what host it is accessed from</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>Returns</dt>
          <dd>the volume key, or NULL on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolGetName">
            <code>virStorageVolGetName</code>
          </a>
        </h3>
        <pre class="api"><span class="type">const char *</span>	virStorageVolGetName	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)</pre>
        <div class="description">
          <p>Fetch the storage volume name. This is unique within the scope of a pool</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>Returns</dt>
          <dd>the volume name, or NULL on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolGetPath">
            <code>virStorageVolGetPath</code>
          </a>
        </h3>
        <pre class="api"><span class="type">char *</span>	virStorageVolGetPath		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)</pre>
        <div class="description">
          <p>Fetch the storage volume path. Depending on the pool configuration this is either persistent across hosts, or dynamically assigned at pool startup. Consult pool documentation for information on getting the persistent naming</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>Returns</dt>
          <dd>the storage volume path, or NULL on error. The caller must free() the returned path after use.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolGetXMLDesc">
            <code>virStorageVolGetXMLDesc</code>
          </a>
        </h3>
        <pre class="api"><span class="type">char *</span>	virStorageVolGetXMLDesc		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Fetch an XML document describing all aspects of the storage volume</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>flags</dt>
          <dd>extra flags; not used yet, so callers should always pass 0</dd>
          <dt>Returns</dt>
          <dd>the XML document, or NULL on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolLookupByKey">
            <code>virStorageVolLookupByKey</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	virStorageVolLookupByKey	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type">const char *</span> key)</pre>
        <div class="description">
          <p>Fetch a pointer to a storage volume based on its globally unique key</p>
          <p><a href="libvirt-libvirt-storage.html#virStorageVolFree">virStorageVolFree</a> should be used to free the resources after the storage volume object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>key</dt>
          <dd>globally unique key</dd>
          <dt>Returns</dt>
          <dd>a storage volume, or NULL if not found / error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolLookupByName">
            <code>virStorageVolLookupByName</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	virStorageVolLookupByName	(<span class="type"><a href="libvirt-libvirt-storage.html#virStoragePoolPtr">virStoragePoolPtr</a></span> pool,
							 <span class="type">const char *</span> name)</pre>
        <div class="description">
          <p>Fetch a pointer to a storage volume based on its name within a pool</p>
          <p><a href="libvirt-libvirt-storage.html#virStorageVolFree">virStorageVolFree</a> should be used to free the resources after the storage volume object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>pool</dt>
          <dd>pointer to storage pool</dd>
          <dt>name</dt>
          <dd>name of storage volume</dd>
          <dt>Returns</dt>
          <dd>a storage volume, or NULL if not found / error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolLookupByPath">
            <code>virStorageVolLookupByPath</code>
          </a>
        </h3>
        <pre class="api"><span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span>	virStorageVolLookupByPath	(<span class="type"><a href="libvirt-libvirt-host.html#virConnectPtr">virConnectPtr</a></span> conn,
							 <span class="type">const char *</span> path)</pre>
        <div class="description">
          <p>Fetch a pointer to a storage volume based on its locally (host) unique path</p>
          <p><a href="libvirt-libvirt-storage.html#virStorageVolFree">virStorageVolFree</a> should be used to free the resources after the storage volume object is no longer needed.</p>
        </div>
        <dl class="variablelist">
          <dt>conn</dt>
          <dd>pointer to hypervisor connection</dd>
          <dt>path</dt>
          <dd>locally unique path</dd>
          <dt>Returns</dt>
          <dd>a storage volume, or NULL if not found / error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolRef">
            <code>virStorageVolRef</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolRef		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol)</pre>
        <div class="description">
          <p>Increment the reference count on the vol. For each additional call to this method, there shall be a corresponding call to <a href="libvirt-libvirt-storage.html#virStorageVolFree">virStorageVolFree</a> to release the reference count, once the caller no longer needs the reference to this object.</p>
          <p>This method is typically useful for applications where multiple threads are using a connection, and it is required that the connection remain open until all threads have finished using it. ie, each new thread using a vol would increment the reference count.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>the vol to hold a reference on</dd>
          <dt>Returns</dt>
          <dd>0 in case of success, -1 in case of failure.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolResize">
            <code>virStorageVolResize</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolResize		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type">unsigned long long</span> capacity,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Changes the capacity of the storage volume @vol to @capacity. The operation will fail if the new capacity requires allocation that would exceed the remaining free space in the parent pool. The contents of the new capacity will appear as all zero bytes. The capacity value will be rounded to the granularity supported by the hypervisor.</p>
          <p>Normally, the operation will attempt to affect capacity with a minimum impact on allocation (that is, the default operation favors a sparse resize). If @flags contains <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_RESIZE_ALLOCATE">VIR_STORAGE_VOL_RESIZE_ALLOCATE</a>, then the operation will ensure that allocation is sufficient for the new capacity; this may make the operation take noticeably longer.</p>
          <p>Normally, the operation treats @capacity as the new size in bytes; but if @flags contains <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_RESIZE_DELTA">VIR_STORAGE_VOL_RESIZE_DELTA</a>, then @capacity represents the size difference to add to the current size. It is up to the storage pool implementation whether unaligned requests are rounded up to the next valid boundary, or rejected.</p>
          <p>Normally, this operation should only be used to enlarge capacity; but if @flags contains <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_RESIZE_SHRINK">VIR_STORAGE_VOL_RESIZE_SHRINK</a>, it is possible to attempt a reduction in capacity even though it might cause data loss. If <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_RESIZE_DELTA">VIR_STORAGE_VOL_RESIZE_DELTA</a> is also present, then @capacity is subtracted from the current size; without it, @capacity represents the absolute new size regardless of whether it is larger or smaller than the current size.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>capacity</dt>
          <dd>new capacity, in bytes</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageVolResizeFlags">virStorageVolResizeFlags</a></dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on error.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolUpload">
            <code>virStorageVolUpload</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolUpload		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type"><a href="libvirt-libvirt-host.html#virStreamPtr">virStreamPtr</a></span> stream,
					 <span class="type">unsigned long long</span> offset,
					 <span class="type">unsigned long long</span> length,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Upload new content to the volume from a stream. This call will fail if @offset + @length exceeds the size of the volume. Otherwise, if @length is non-zero, an error will be raised if an attempt is made to upload greater than @length bytes of data.</p>
          <p>If <a href="libvirt-libvirt-storage.html#VIR_STORAGE_VOL_UPLOAD_SPARSE_STREAM">VIR_STORAGE_VOL_UPLOAD_SPARSE_STREAM</a> is set in @flags effective transmission of holes is enabled. This assumes using the @stream with combination of <a href="libvirt-libvirt-stream.html#virStreamSparseSendAll">virStreamSparseSendAll</a>() or <a href="libvirt-libvirt-stream.html#virStreamSendHole">virStreamSendHole</a>() to preserve source file sparseness.</p>
          <p>This call sets up an asynchronous stream; subsequent use of stream APIs is necessary to transfer the actual data, determine how much data is successfully transferred, and detect any errors. The results will be unpredictable if another active stream is writing to the storage volume.</p>
          <p>When the data stream is closed whether the upload is successful or not an attempt will be made to refresh the target storage pool if an asynchronous build is not running in order to reflect pool and volume changes as a result of the upload. Depending on the target volume storage backend and the source stream type for a successful upload, the target volume may take on the characteristics from the source stream such as format type, capacity, and allocation.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to volume to upload</dd>
          <dt>stream</dt>
          <dd>stream to use as input</dd>
          <dt>offset</dt>
          <dd>position to start writing to</dd>
          <dt>length</dt>
          <dd>limit on amount of data to upload</dd>
          <dt>flags</dt>
          <dd>bitwise-OR of <a href="libvirt-libvirt-storage.html#virStorageVolUploadFlags">virStorageVolUploadFlags</a></dd>
          <dt>Returns</dt>
          <dd>0, or -1 upon error.</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolWipe">
            <code>virStorageVolWipe</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolWipe		(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Ensure data previously on a volume is not accessible to future reads.</p>
          <p>The data to be wiped may include the format and possibly size information, so non-raw images might become raw with a different size. It is storage backend dependent whether the format and size information is regenerated once the initial volume wipe is completed.</p>
          <p>Depending on the actual volume representation, this call may not overwrite the physical location of the volume. For instance, files stored journaled, log structured, copy-on-write, versioned, and network file systems are known to be problematic.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>flags</dt>
          <dd>extra flags; not used yet, so callers should always pass 0</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on error</dd>
        </dl>
        <div class="acl"/>
        <h3>
          <a name="virStorageVolWipePattern">
            <code>virStorageVolWipePattern</code>
          </a>
        </h3>
        <pre class="api"><span class="type">int</span>	virStorageVolWipePattern	(<span class="type"><a href="libvirt-libvirt-storage.html#virStorageVolPtr">virStorageVolPtr</a></span> vol,
					 <span class="type">unsigned int</span> algorithm,
					 <span class="type">unsigned int</span> flags)</pre>
        <div class="description">
          <p>Similar to <a href="libvirt-libvirt-storage.html#virStorageVolWipe">virStorageVolWipe</a>, but one can choose between different wiping algorithms. Also note, that depending on the actual volume representation, this call may not really overwrite the physical location of the volume. For instance, files stored journaled, log structured, copy-on-write, versioned, and network file systems are known to be problematic.</p>
        </div>
        <dl class="variablelist">
          <dt>vol</dt>
          <dd>pointer to storage volume</dd>
          <dt>algorithm</dt>
          <dd>one of <a href="libvirt-libvirt-storage.html#virStorageVolWipeAlgorithm">virStorageVolWipeAlgorithm</a></dd>
          <dt>flags</dt>
          <dd>future flags, use 0 for now</dd>
          <dt>Returns</dt>
          <dd>0 on success, or -1 on error.</dd>
        </dl>
        <div class="acl"/>
      </div>
    </div>
    <div id="nav">
      <div id="home">
        <a href="../index.html">Home</a>
      </div>
      <div id="jumplinks">
        <ul>
          <li>
            <a href="../downloads.html">Download</a>
          </li>
          <li>
            <a href="../contribute.html">Contribute</a>
          </li>
          <li>
            <a href="../docs.html">Docs</a>
          </li>
        </ul>
      </div>
      <div id="search">
        <form action="../search.php" enctype="application/x-www-form-urlencoded" method="get">
          <div>
            <input name="query" type="text" size="12" value=""/>
            <input name="submit" type="submit" value="Go"/>
          </div>
        </form>
      </div>
    </div>
    <div id="footer">
      <div id="contact">
        <h3>Contact</h3>
        <ul>
          <li>
            <a href="../contact.html#email">email</a>
          </li>
          <li>
            <a href="../contact.html#irc">irc</a>
          </li>
        </ul>
      </div>
      <div id="community">
        <h3>Community</h3>
        <ul>
          <li>
            <a href="https://twitter.com/hashtag/libvirt">twitter</a>
          </li>
          <li>
            <a href="https://plus.google.com/communities/109522598353007505282">google+</a>
          </li>
          <li>
            <a href="http://stackoverflow.com/questions/tagged/libvirt">stackoverflow</a>
          </li>
          <li>
            <a href="http://serverfault.com/questions/tagged/libvirt">serverfault</a>
          </li>
        </ul>
      </div>
      <div id="conduct">
            Participants in the libvirt project agree to abide by <a href="../governance.html#codeofconduct">the project code of conduct</a></div>
      <br class="clear"/>
    </div>
  </body>
</html>