mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Set session_group after the port's data structure has been populated.
Fixes #16247, patch by "jojelino".
This commit is contained in:
parent
a68e5323f8
commit
f2ff814582
5
changes/bug16247
Normal file
5
changes/bug16247
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
o Minor bugfixes (client-side privacy):
|
||||||
|
- Properly separate out each SOCKSPort when applying stream isolation.
|
||||||
|
The error occured because each port's session group was being
|
||||||
|
overwritten by a default value. Fixes bug 16247; bugfix on
|
||||||
|
0.2.6.3-alpha. Patch by "jojelino".
|
@ -1284,6 +1284,8 @@ connection_listener_new(const struct sockaddr *listensockaddr,
|
|||||||
conn->port = gotPort;
|
conn->port = gotPort;
|
||||||
tor_addr_copy(&conn->addr, &addr);
|
tor_addr_copy(&conn->addr, &addr);
|
||||||
|
|
||||||
|
memcpy(&lis_conn->entry_cfg, &port_cfg->entry_cfg, sizeof(entry_port_cfg_t));
|
||||||
|
|
||||||
if (port_cfg->entry_cfg.isolation_flags) {
|
if (port_cfg->entry_cfg.isolation_flags) {
|
||||||
lis_conn->entry_cfg.isolation_flags = port_cfg->entry_cfg.isolation_flags;
|
lis_conn->entry_cfg.isolation_flags = port_cfg->entry_cfg.isolation_flags;
|
||||||
if (port_cfg->entry_cfg.session_group >= 0) {
|
if (port_cfg->entry_cfg.session_group >= 0) {
|
||||||
@ -1299,8 +1301,6 @@ connection_listener_new(const struct sockaddr *listensockaddr,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
memcpy(&lis_conn->entry_cfg, &port_cfg->entry_cfg, sizeof(entry_port_cfg_t));
|
|
||||||
|
|
||||||
if (type != CONN_TYPE_AP_LISTENER) {
|
if (type != CONN_TYPE_AP_LISTENER) {
|
||||||
lis_conn->entry_cfg.ipv4_traffic = 1;
|
lis_conn->entry_cfg.ipv4_traffic = 1;
|
||||||
lis_conn->entry_cfg.ipv6_traffic = 1;
|
lis_conn->entry_cfg.ipv6_traffic = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user