diff options
author | Nikola Pajkovsky <npajkovs@redhat.com> | 2009-10-26 15:20:03 +0100 |
---|---|---|
committer | Nikola Pajkovsky <npajkovs@redhat.com> | 2009-10-26 15:20:03 +0100 |
commit | 65869764558afc330f9ba0227032d49b9b676e27 (patch) | |
tree | 47cb52495c6be30f4ff5921ee3cf7473fb4b1c1c /lib/Plugins/Bugzilla.h | |
parent | 9fd559b06bbf3f9a40eca5e0663392801d2677b7 (diff) | |
download | abrt-65869764558afc330f9ba0227032d49b9b676e27.tar.gz abrt-65869764558afc330f9ba0227032d49b9b676e27.tar.xz abrt-65869764558afc330f9ba0227032d49b9b676e27.zip |
New insides in bugzilla.{cpp/h}. Hole xmlrpc protocol was rewritten into C.
Diffstat (limited to 'lib/Plugins/Bugzilla.h')
-rw-r--r-- | lib/Plugins/Bugzilla.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/Plugins/Bugzilla.h b/lib/Plugins/Bugzilla.h index fa56c2c6..1fccbe47 100644 --- a/lib/Plugins/Bugzilla.h +++ b/lib/Plugins/Bugzilla.h @@ -3,31 +3,17 @@ #include "Plugin.h" #include "Reporter.h" -//#include <xmlrpc-c/client.hpp> - #include <nssb64.h> - #include <xmlrpc-c/base.h> #include <xmlrpc-c/client.h> -#include <xmlrpc-c/base.h> -#include <xmlrpc-c/client.h> class CReporterBugzilla : public CReporter { private: - // C implementation - bool m_bNoSSLVerify; bool m_bLoggedIn; static PRInt32 Base64Encode_cb(void *arg, const char *obuf, PRInt32 size); - void Logout(); - std::string NewBug(const map_crash_report_t& pCrashReport); void AddAttachments(const std::string& pBugId, const map_crash_report_t& pCrashReport); - void CreateNewBugDescription(const map_crash_report_t& pCrashReport, - std::string& pDescription); - void GetProductAndVersion(const std::string& pRelease, - std::string& pProduct, - std::string& pVersion); std::string m_sBugzillaURL; std::string m_sBugzillaXMLRPC; @@ -35,7 +21,6 @@ class CReporterBugzilla : public CReporter std::string m_sPassword; std::string m_sAttchmentInBase64; - public: CReporterBugzilla(); virtual ~CReporterBugzilla(); |