set Content-Type on the directory and hidserv descriptor

svn:r1731
This commit is contained in:
Roger Dingledine 2004-04-27 21:48:37 +00:00
parent 9965bd8387
commit 158e2cf536
2 changed files with 3 additions and 3 deletions

View File

@ -354,7 +354,7 @@ static int directory_handle_command_get(connection_t *conn,
}
log_fn(LOG_DEBUG,"Dumping directory to client.");
snprintf(tmp, sizeof(tmp), "HTTP/1.0 200 OK\r\nContent-Length: %d\r\n\r\n",
snprintf(tmp, sizeof(tmp), "HTTP/1.0 200 OK\r\nContent-Length: %d\r\nContent-Type: text/plain\r\n\r\n",
(int)dlen);
connection_write_to_buf(tmp, strlen(tmp), conn);
connection_write_to_buf(cp, strlen(cp), conn);
@ -368,7 +368,7 @@ static int directory_handle_command_get(connection_t *conn,
switch(rend_cache_lookup_desc(url+strlen(rend_fetch_url), &descp, &desc_len)) {
case 1: /* valid */
snprintf(tmp, sizeof(tmp), "HTTP/1.0 200 OK\r\nContent-Length: %d\r\n\r\n",
snprintf(tmp, sizeof(tmp), "HTTP/1.0 200 OK\r\nContent-Length: %d\r\nContent-Type: application/octet-stream\r\n\r\n",
desc_len); /* can't include descp here, because it's got nuls */
connection_write_to_buf(tmp, strlen(tmp), conn);
connection_write_to_buf(descp, desc_len, conn);

View File

@ -173,7 +173,7 @@ rend_mid_introduce(circuit_t *circ, const char *request, int request_len)
return -1;
}
/* Process an ESTABLISH_RENDEZVOUS cell by settingthe circuit's purpose and
/* Process an ESTABLISH_RENDEZVOUS cell by setting the circuit's purpose and
* rendezvous cookie.
*/
int