Re-add listen_tcp/listen_tls config params accidentally lost

This commit is contained in:
Daniel P. Berrange 2007-12-05 18:56:27 +00:00
parent e332ccdf71
commit 60a6bbe6c5
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Wed Dec 5 13:55:00 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* qemud/qemud.c: Re-added listen_tcp & listen_tls config
param handling accidentally lost in earlier refactoring
Wed Dec 5 13:51:00 EST 2007 Daniel P. Berrange <berrange@redhat.com>
* include/libvirt/libvirt.h.in: Add virConnectAuthPtrDefault

View File

@ -1839,6 +1839,8 @@ remoteReadConfigFile (struct qemud_server *server, const char *filename)
conf = virConfReadFile (filename);
if (!conf) return 0;
GET_CONF_INT (conf, filename, listen_tcp);
GET_CONF_INT (conf, filename, listen_tls);
GET_CONF_STR (conf, filename, tls_port);
GET_CONF_STR (conf, filename, tcp_port);