1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 20:33:52 +00:00

The capture utility will connect to localhost by default.

This commit is contained in:
Bartosz Taudul 2020-04-03 01:46:07 +02:00
parent b016d9e295
commit 9f15d402de

View File

@ -30,7 +30,7 @@ void SigInt( int )
void Usage() void Usage()
{ {
printf( "Usage: capture -a address -o output.tracy [-p port]\n" ); printf( "Usage: capture -o output.tracy [-a address] [-p port]\n" );
exit( 1 ); exit( 1 );
} }
@ -44,7 +44,7 @@ int main( int argc, char** argv )
} }
#endif #endif
const char* address = nullptr; const char* address = "localhost";
const char* output = nullptr; const char* output = nullptr;
int port = 8086; int port = 8086;