blob: c3a63e51db492831b0dbfbb89942bf5a82c0d3ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef ABRTSOCKET_H_
#define ABRTSOCKET_H_
#include <string>
#include "CrashTypes.h"
class CABRTSocket
{
private:
int m_nSocket;
void Send(const char *pMessage);
void Recv(std::string& pMessage);
public:
CABRTSocket();
~CABRTSocket();
void Connect(const char *pPath);
void Disconnect();
vector_crash_infos_t GetCrashInfos();
map_crash_report_t CreateReport(const char *pUUID);
void Report(const map_crash_report_t& pReport);
int32_t DeleteDebugDump(const char *pUUID);
};
#endif /* ABRTSOCKET_H_ */
|