mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
set Content-Type on the directory and hidserv descriptor
svn:r1731
This commit is contained in:
parent
9965bd8387
commit
158e2cf536
@ -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);
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user