blob: 15bc47ae211ea8f088a06dfd6f3078ec5dda83c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <util/generic/guid.h>
#include "udp_address.h"
namespace NNetliba {
class TRopeDataPacket;
struct TRequest {
TUdpAddress Address;
TGUID Guid;
TAutoPtr<TRopeDataPacket> Data;
};
}
|