```
In order to provide the downstream server with the address of the real client,
-or at least the one talking to `dnsdist`, the 'useClientSubnet' parameter can be used
+or at least the one talking to `dnsdist`, the `useClientSubnet` parameter can be used
when declaring a new server. This parameter indicates whether an EDNS Client Subnet option
should be added to the request. If the incoming request already contains an EDNS Client Subnet value,
-it will not be overriden unless `setECSOverride()` is set to true. The source prefix-length may be
-configured with:
+it will not be overriden unless `setECSOverride()` is set to true.
+The default source prefix-length is 24 for IPv4 and 56 for IPv6, meaning that for a query
+received from 192.0.2.42, the EDNS Client Subnet value sent to the backend will
+be 192.0.2.0. This can be changed with:
```
> setECSSourcePrefixV4(24)
> setECSSourcePrefixV6(56)
```
The supported values for `source` are:
+
* an IPv4 or IPv6 address, which must exist on the system
* an interface name
* an IPv4 or IPv6 address followed by '@' then an interface name