Files
lan_chat_cpp/SocketLibrary/Protocol.h
2020-01-11 07:05:54 +01:00

12 lines
115 B
C++

#pragma once
namespace SocketLibrary
{
enum class Protocol
{
Unknown,
TCP,
UDP_Sender,
UDP_Reciver
};
}