Further compact code

dynamic-accesslists
erdgeist 18 years ago
parent b9743bf516
commit 419e65cc2a

@ -104,6 +104,9 @@ const char* http_header(struct http_data* r,const char* h)
void httpresponse(struct http_data* h,int64 s) void httpresponse(struct http_data* h,int64 s)
{ {
char *c, *d, *data; char *c, *d, *data;
struct ot_peer peer;
ot_hash *hash = NULL;
array_cat0(&h->r); array_cat0(&h->r);
c = array_start(&h->r); c = array_start(&h->r);
@ -124,8 +127,7 @@ e400:
if (c[0]!='/') goto e404; if (c[0]!='/') goto e404;
while (c[1]=='/') ++c; while (c[1]=='/') ++c;
data = c; switch( scan_urlencoded_query( &c, data = c, SCAN_PATH ) ) {
switch( scan_urlencoded_query( &c, data, SCAN_PATH ) ) {
case 0: case 0:
e404: e404:
httperror(h,"404 Not Found","No such file or directory."); httperror(h,"404 Not Found","No such file or directory.");
@ -134,49 +136,42 @@ e404:
if (!byte_diff(c,6,"scrape")) if (!byte_diff(c,6,"scrape"))
goto e404; goto e404;
break; break;
case 9: case 8:
if( !byte_diff(c,8,"announce")) if( !byte_diff(c,8,"announce"))
goto e404; goto e404;
else {
// info_hash, left, port, numwant, compact byte_copy( peer.ip, 4, h->ip );
struct ot_peer peer; peer.port = 6881;
ot_hash *hash = NULL;
byte_copy( peer.ip, 4, h->ip ); while( 1 ) {
peer.port = 6881; switch( scan_urlencoded_query( &c, data = c, SCAN_SEARCHPATH_PARAM ) ) {
case -1: /* error */
while( 1 ) { goto e404;
data = c; case 4:
switch( scan_urlencoded_query( &c, data, SCAN_SEARCHPATH_PARAM ) ) { if(!byte_diff(c,4,"port"))
case -1: /* error */ /* scan int */ c;
goto e404; else if(!byte_diff(c,4,"left"))
case 4: /* scan int */ c;
if(!byte_diff(c,4,"port")) break;
/* scan int */ c; case 7:
else if(!byte_diff(c,4,"left")) if(!byte_diff(c,7,"numwant"))
/* scan int */ c; /* scan int */ c;
break; else if(!byte_diff(c,7,"compact"))
case 7: /* scan flag */ c;
if(!byte_diff(c,7,"numwant")) break;
/* scan int */ c; case 9: /* info_hash= */
else if(!byte_diff(c,7,"compact")) if(!byte_diff(c,9,"info_hash")) {
/* scan flag */ c; /* ignore this, when we have less than 20 bytes */
break; switch( scan_urlencoded_query( &c, data = c, SCAN_SEARCHPATH_VALUE ) )
case 9: /* info_hash= */ case -1:
if(!byte_diff(c,9,"info_hash")) { httperror(h,"404 Not Found","No such file or directory.");
data = c; goto bailout;
/* ignore this, when we have less than 20 bytes */ case 20:
switch( scan_urlencoded_query( &c, data, SCAN_SEARCHPATH_VALUE ) ) hash = (ot_hash*)data; /* Fall through intended */
case -1: default:
httperror(h,"404 Not Found","No such file or directory."); continue;
goto bailout;
case 20:
hash = (ot_hash*)data;
break;
default:
continue;
}
break;
} }
break;
} }
} }
break; break;

Loading…
Cancel
Save