diff options
author | Osier Yang <jyang@redhat.com> | 2012-09-13 14:54:09 +0800 |
---|---|---|
committer | Osier Yang <jyang@redhat.com> | 2012-09-17 10:30:04 +0800 |
commit | cb41d86c6c79dac1ab6440a5ce49945e09b0322d (patch) | |
tree | 00b8c3ddf82af896dba26acac5284da7e4192ae6 /generator.py | |
parent | b286824eee96095ba18b44339e8d33e8eb367d6a (diff) | |
download | libvirt-python-cb41d86c6c79dac1ab6440a5ce49945e09b0322d.tar.gz |
list: Define new API virConnectListAllNodeDevices
This is to list the node device objects, supports to filter the results
by capability types.
include/libvirt/libvirt.h.in: Declare enum virConnectListAllNodeDeviceFlags
and virConnectListAllNodeDevices.
python/generator.py: Skip auto-generating
src/driver.h: (virDrvConnectListAllNodeDevices)
src/libvirt.c: Implement the public API
src/libvirt_public.syms: Export the symbol to public
Diffstat (limited to 'generator.py')
-rwxr-xr-x | generator.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/generator.py b/generator.py index 8f6e455..a8e4ec6 100755 --- a/generator.py +++ b/generator.py @@ -464,6 +464,7 @@ skip_function = ( 'virStoragePoolListAllVolumes', # overridden in virStoragePool.py 'virConnectListAllNetworks', # overridden in virConnect.py 'virConnectListAllInterfaces', # overridden in virConnect.py + 'virConnectListAllNodeDevices', # overridden in virConnect.py 'virStreamRecvAll', # Pure python libvirt-override-virStream.py 'virStreamSendAll', # Pure python libvirt-override-virStream.py |