Commit 93591383 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

When asking for a specific address type, others aren't acceptable

parent d2768947
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1168,6 +1168,10 @@ connection_ap_handshake_rewrite_and_attach(entry_connection_t *conn,
                     "no IPv4 traffic supported.");
            connection_mark_unattached_ap(conn, END_STREAM_REASON_ENTRYPOLICY);
            return -1;
          } else if (family == AF_INET6) {
            conn->ipv4_traffic_ok = 0;
          } else if (family == AF_INET) {
            conn->ipv6_traffic_ok = 0;
          }
        }
      }