miniupnpc-libevent/upnpc-libevent.c: improve output

This commit is contained in:
Thomas Bernard 2014-12-02 15:09:39 +01:00
parent 2fd247bcbc
commit a509abb371
1 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $Id: upnpc-libevent.c,v 1.10 2014/12/01 17:41:11 nanard Exp $ */ /* $Id: upnpc-libevent.c,v 1.11 2014/12/02 13:33:42 nanard Exp $ */
/* miniupnpc-libevent /* miniupnpc-libevent
* Copyright (c) 2008-2014, Thomas BERNARD <miniupnp@free.fr> * Copyright (c) 2008-2014, Thomas BERNARD <miniupnp@free.fr>
* http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/ * http://miniupnp.free.fr/ or http://miniupnp.tuxfamily.org/
@ -43,6 +43,7 @@ static void ready(int code, upnpc_t * p, upnpc_device_t * d, void * data)
if(code == 200) { if(code == 200) {
printf("READY ! %d\n", code); printf("READY ! %d\n", code);
printf(" root_desc_location='%s'\n", d->root_desc_location);
/* 1st request */ /* 1st request */
upnpc_get_status_info(d); upnpc_get_status_info(d);
} else { } else {
@ -99,12 +100,12 @@ static void soap(int code, upnpc_t * p, upnpc_device_t * d, void * data)
state = EAddPortMapping; state = EAddPortMapping;
break; break;
case EAddPortMapping: case EAddPortMapping:
printf("OK!\n"); printf("AddPortMapping OK!\n");
upnpc_delete_port_mapping(d, NULL, 60001, "TCP"); upnpc_delete_port_mapping(d, NULL, 60001, "TCP");
state = EDeletePortMapping; state = EDeletePortMapping;
break; break;
case EDeletePortMapping: case EDeletePortMapping:
printf("OK!\n"); printf("DeletePortMapping OK!\n");
state = EFinished; state = EFinished;
break; break;
default: default: