summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKrzysztof Wilczynski <kw@linux.com>2018-05-17 12:42:31 +0200
committerKrzysztof Wilczynski <kw@linux.com>2018-05-18 10:41:56 +0200
commit4ccab4fd6cc8ae619ad85b7d6e18c9b4635acdbc (patch)
tree1a087a6bb92e081444362b2a08c4654aad79236e /docs
parent337a005451544c78ad41a036ecf9ea354d52ceb7 (diff)
Remove notion of "private" selector from the Include/Exclude filter.
This commit removes any mention of the "private" selector from the Include and Exclude filters, as it is not supported by the upstream `go-sockaddr` project. Signed-off-by: Krzysztof Wilczynski <kw@linux.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/content/functions/sockaddr.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/docs/content/functions/sockaddr.md b/docs/content/functions/sockaddr.md
index 9cc14d62..81f2dba8 100644
--- a/docs/content/functions/sockaddr.md
+++ b/docs/content/functions/sockaddr.md
@@ -84,7 +84,6 @@ The valid selectors are:
| `default` | whether or not the `IfAddr` has a default route |
| `name` | the interface name |
| `port` | the port, if included in the `IfAddr` |
-| `private` | private addresses first |
| `size` | the size of the network mask, smaller mask (larger number of hosts per network) to largest (e.g. a /24 sorts before a /32) |
| `type` | the type of the `IfAddr`. Order is Unix, IPv4, then IPv6 |
@@ -124,7 +123,6 @@ The valid selectors are:
| `name` | the interface name |
| `network` | being part of the given IP network (in net/mask format) |
| `port` | the port, if included in the `IfAddr` |
-| `private` | private addresses |
| `rfc` | being included in networks defined by the given RFC. See [the source code](https://github.com/hashicorp/go-sockaddr/blob/master/rfc.go#L38) for a list of valid RFCs |
| `size` | the size of the network mask, as number of bits (e.g. `"24"` for a /24) |
| `type` | the type of the `IfAddr`. `unix`, `ipv4`, or `ipv6` |