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@8074 ddefafc4-47db-0310-ae44-fa13212b10f2
25 lines
342 B
C++
25 lines
342 B
C++
#ifndef P2P_Find_hxx
|
|
#define P2P_Find_hxx
|
|
|
|
#include "p2p/Message.hxx"
|
|
|
|
namespace p2p
|
|
{
|
|
|
|
class FindAns : public Message
|
|
{
|
|
public:
|
|
virtual MessageType getMessageType() const { return FindAnsType; }
|
|
};
|
|
|
|
|
|
class FindReq : public Message
|
|
{
|
|
public:
|
|
virtual MessageType getMessageType() const { return FindReqType; }
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|