summaryrefslogtreecommitdiffstats
path: root/lib/CommLayer/CommLayerServer.h
diff options
context:
space:
mode:
authorZdenek Prikryl <zprikryl@redhat.com>2009-05-20 11:16:33 +0200
committerZdenek Prikryl <zprikryl@redhat.com>2009-05-20 11:16:33 +0200
commit821c30ceca2885836fb2aeafaa03ab0c0f1b1809 (patch)
treeed60a68f5ca8067cc9b7f1285c1b15dd648e7238 /lib/CommLayer/CommLayerServer.h
parentbc12d93a46c87ccf647f83b4eafd4378d19b9e29 (diff)
downloadabrt-821c30ceca2885836fb2aeafaa03ab0c0f1b1809.tar.gz
abrt-821c30ceca2885836fb2aeafaa03ab0c0f1b1809.tar.xz
abrt-821c30ceca2885836fb2aeafaa03ab0c0f1b1809.zip
initial unix socket interface
Diffstat (limited to 'lib/CommLayer/CommLayerServer.h')
-rw-r--r--lib/CommLayer/CommLayerServer.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/CommLayer/CommLayerServer.h b/lib/CommLayer/CommLayerServer.h
index f781813a..77cf7ef4 100644
--- a/lib/CommLayer/CommLayerServer.h
+++ b/lib/CommLayer/CommLayerServer.h
@@ -34,12 +34,12 @@ class CCommLayerServer{
void Attach(CObserver *pObs);
void Detach(CObserver *pObs);
void Notify(const std::string& pMessage);
-
- virtual vector_crash_infos_t GetCrashInfos(const std::string &pDBusSender) = 0;
- virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pDBusSender) = 0;
+
+ virtual vector_crash_infos_t GetCrashInfos(const std::string &pSender) = 0;
+ virtual map_crash_report_t CreateReport(const std::string &pUUID,const std::string &pSender) = 0;
virtual bool Report(map_crash_report_t pReport) = 0;
- virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pDBusSender) = 0;
-
+ virtual bool DeleteDebugDump(const std::string& pUUID, const std::string& pSender) = 0;
+
public:
/* just stubs to be called when not implemented in specific comm layer */
virtual void Crash(const std::string& arg1) {}