summaryrefslogtreecommitdiffstats
path: root/src/CLI/ABRTSocket.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CLI/ABRTSocket.h')
-rw-r--r--src/CLI/ABRTSocket.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/CLI/ABRTSocket.h b/src/CLI/ABRTSocket.h
index 5d5383fa..c3a63e51 100644
--- a/src/CLI/ABRTSocket.h
+++ b/src/CLI/ABRTSocket.h
@@ -10,20 +10,20 @@ class CABRTSocket
private:
int m_nSocket;
- void Send(const std::string& pMessage);
+ void Send(const char *pMessage);
void Recv(std::string& pMessage);
public:
CABRTSocket();
~CABRTSocket();
- void Connect(const std::string& pPath);
+ void Connect(const char *pPath);
void Disconnect();
vector_crash_infos_t GetCrashInfos();
- map_crash_report_t CreateReport(const std::string& pUUID);
+ map_crash_report_t CreateReport(const char *pUUID);
void Report(const map_crash_report_t& pReport);
- void DeleteDebugDump(const std::string& pUUID);
+ int32_t DeleteDebugDump(const char *pUUID);
};
#endif /* ABRTSOCKET_H_ */