Lines 43-49
start_precmd=${name}_precmd
Link Here
|
43 |
# .NET 6+ use dual mode sockets to avoid the separate AF handling. |
43 |
# .NET 6+ use dual mode sockets to avoid the separate AF handling. |
44 |
# disable .NET use of V6 if no ipv6 is configured. |
44 |
# disable .NET use of V6 if no ipv6 is configured. |
45 |
# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17 |
45 |
# See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17 |
46 |
ifconfig | grep -q inet6 |
46 |
ifconfig -a -u -G lo | grep -q inet6 |
47 |
if [ $? == 1 ]; then |
47 |
if [ $? == 1 ]; then |
48 |
export DOTNET_SYSTEM_NET_DISABLEIPV6=1 |
48 |
export DOTNET_SYSTEM_NET_DISABLEIPV6=1 |
49 |
fi |
49 |
fi |
50 |
- |
|
|