You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/MonoTorrent/Messages/IMessage.cs

13 lines
235 B

namespace MonoTorrent.Messages
{
interface IMessage
{
int ByteLength { get;}
byte[] Encode();
int Encode(byte[] buffer, int offset);
void Decode(byte[] buffer, int offset, int length);
}
}