mirror of
https://github.com/resiprocate/resiprocate.git
synced 2026-01-12 00:05:02 +08:00
git-svn-id: https://svn.resiprocate.org/rep/resiprocate/main@8089 ddefafc4-47db-0310-ae44-fa13212b10f2
39 lines
589 B
C++
39 lines
589 B
C++
#ifndef P2P_CertDone_hxx
|
|
#define P2P_CertDone_hxx
|
|
|
|
#include "rutil/Data.hxx"
|
|
#include "Event.hxx"
|
|
|
|
namespace p2p
|
|
{
|
|
|
|
class CertDone : public Event
|
|
{
|
|
public:
|
|
enum Resolution
|
|
{
|
|
Succeeded = 0,
|
|
NoNetWork,
|
|
SingerUnknown,
|
|
};
|
|
|
|
CertDone(const resip::Data& id,
|
|
Resolution resolution)
|
|
: mId(id)
|
|
{}
|
|
|
|
virtual resip::Data brief() const
|
|
{
|
|
return "CertDone";
|
|
}
|
|
|
|
|
|
private:
|
|
const resip::Data mId;
|
|
Resolution mResolution;
|
|
};
|
|
|
|
} // p2p
|
|
|
|
#endif // P2P_CertDone_hxx
|