Better application types

This commit is contained in:
Dennis Eichhorn 2016-07-12 17:12:31 +02:00
parent 24089965e7
commit 0f5ca13774

View File

@ -30,6 +30,7 @@ use phpOMS\Datatypes\Enum;
*/
abstract class SocketType extends Enum
{
const SERVER = 'server'; /* Server socket */
const CLIENT = 'client'; /* Client socket */
const TCP_SERVER = 'server';
const TCP_CLIENT = 'client';
const WEB_SOCKET = 'ws';
}