DestLookupMessage

This commit is contained in:
orignal 2016-06-03 11:49:39 -04:00
parent e50c35d38c
commit c8d6425123
2 changed files with 43 additions and 2 deletions

3
I2CP.h
View file

@ -40,6 +40,8 @@ namespace client
const uint8_t I2CP_MESSAGE_STATUS_MESSAGE = 22;
const uint8_t I2CP_HOST_LOOKUP_MESSAGE = 38;
const uint8_t I2CP_HOST_REPLY_MESSAGE = 39;
const uint8_t I2CP_DEST_LOOKUP_MESSAGE = 34;
const uint8_t I2CP_DEST_REPLY_MESSAGE = 35;
enum I2CPMessageStatus
{
@ -111,6 +113,7 @@ namespace client
void CreateLeaseSetMessageHandler (const uint8_t * buf, size_t len);
void SendMessageMessageHandler (const uint8_t * buf, size_t len);
void HostLookupMessageHandler (const uint8_t * buf, size_t len);
void DestLookupMessageHandler (const uint8_t * buf, size_t len);
private: