add some debug info about packet contents

This commit is contained in:
dmh 2014-01-21 13:04:52 -07:00
parent 0fa9dc98eb
commit 75adeae78b
2 changed files with 6 additions and 1 deletions

View File

@ -344,7 +344,7 @@ ocdodsrc_read(char* basename, char* path)
strncat(line,"=1",2);
value = strchr(line,'=');
}
if(value == null) continue;
if(value == NULL) continue;
*value = '\0';
value++;
strncpy(ocdodsrc->triples[ocdodsrc->ntriples].key,TRIM(key),strlen(key));

View File

@ -121,8 +121,13 @@ readpacket(OCstate* state, OCURI* url,OCbytes* packet,OCdxd dxd,long* lastmodifi
}
free(fetchurl);
#ifdef OCDEBUG
{
fprintf(stderr,"readpacket: packet.size=%lu\n",
(unsigned long)ocbyteslength(packet));
int count = ocbyteslength(packet);
if(count > 20) count = 20;
fprintf(stderr,"packet[0..20]=|%20s|",ocbytescontents(packet));
}
#endif
return OCTHROW(stat);
}