1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Allow changing tracy port in client.

This commit is contained in:
Bartosz Taudul
2019-09-21 15:11:15 +02:00
parent 140654961c
commit e13cbf52fd
3 changed files with 21 additions and 9 deletions
+2 -2
View File
@@ -52,7 +52,7 @@ public:
ListenSocket();
~ListenSocket();
bool Listen( const char* port, int backlog );
bool Listen( int port, int backlog );
Socket* Accept();
void Close();
@@ -71,7 +71,7 @@ public:
UdpBroadcast();
~UdpBroadcast();
bool Open( const char* addr, const char* port );
bool Open( const char* addr, int port );
void Close();
int Send( int port, const void* data, int len );