X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=clients%2Ftest.c;h=04f471c0935b0d35174ff04ea6729c03b2367f33;hb=refs%2Fheads%2Fjava;hp=25deedb15714142ce5d437811c62e2a77015e673;hpb=d3372da97568d5e1f35fa19787c8ec8af93a0435;p=doldaconnect.git diff --git a/clients/test.c b/clients/test.c index 25deedb..04f471c 100644 --- a/clients/test.c +++ b/clients/test.c @@ -12,14 +12,12 @@ void authcallback(int err, wchar_t *reason, void *data) int main(int argc, char **argv) { - int i; struct pollfd pfd; int fd, done; struct dc_response *resp; - struct dc_intresp *ires; dc_init(); - fd = dc_connect("localhost", -1); + fd = dc_connect(NULL); done = 0; while(!done) { @@ -38,10 +36,11 @@ int main(int argc, char **argv) done = 1; while((resp = dc_getresp()) != NULL) { - if(resp->cmdname == NULL) + if(!wcscmp(resp->cmdname, L".connect")) { - printf("Connected\n"); - dc_loginasync(NULL, 0, NULL, authcallback, NULL); + printf("Connected: %i\n", resp->code); + if(resp->code == 201) + dc_loginasync(NULL, 1, NULL, authcallback, NULL); } dc_freeresp(resp); }