Allow for command line specified host.

This commit is contained in:
Jan Vidar Krey 2009-10-06 18:16:38 +02:00
parent f50b40fb92
commit 255255ff20
1 changed files with 7 additions and 1 deletions

View File

@ -66,12 +66,18 @@ static int handle(struct ADC_client* client, enum ADC_client_callback_type type,
int main(int argc, char** argv)
{
if (argc < 2)
{
printf("Usage: %s adc[s]://host:port\n", argv[0]);
return 1;
}
struct ADC_client client;
net_initialize();
ADC_client_create(&client, "uhub-admin", "stresstester");
ADC_client_set_callback(&client, handle);
ADC_client_connect(&client, "adc://adc.extatic.org:1511");
ADC_client_connect(&client, argv[1]);
event_dispatch();