summaryrefslogtreecommitdiff
path: root/docs-src/content
diff options
context:
space:
mode:
authorDave Henderson <dhenderson@gmail.com>2023-02-04 16:32:49 -0500
committerDave Henderson <dhenderson@gmail.com>2023-02-04 21:01:14 -0500
commitedf224ccf7c66498b2d9743fcfb29bf4c0960931 (patch)
tree33461cb75f2d63e91be1d8a7ec5a9e72ce962f12 /docs-src/content
parentaf3e81ac52f93f07aea644b6397dbca97e5d30aa (diff)
Deprecate netaddr-based funcs
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'docs-src/content')
-rw-r--r--docs-src/content/functions/net.yml73
1 files changed, 73 insertions, 0 deletions
diff --git a/docs-src/content/functions/net.yml b/docs-src/content/functions/net.yml
index 67b7664a..45a9b1ec 100644
--- a/docs-src/content/functions/net.yml
+++ b/docs-src/content/functions/net.yml
@@ -126,7 +126,27 @@ funcs:
[
"v=spf1 -all"
]
+ - name: net.ParseAddr
+ description: |
+ Parse the given string as an IP address (a
+ [`netip.Addr`](https://pkg.go.dev/net/netip#Addr)).
+
+ Any of `netip.Addr`'s methods may be called on the resulting value. See
+ [the docs](https://pkg.go.dev/net/netip#Addr) for details.
+ pipeline: true
+ arguments:
+ - name: addr
+ required: true
+ description: The IP string to parse. It must be either an IPv4 or IPv6 address.
+ examples:
+ - |
+ $ gomplate -i '{{ (net.ParseAddr "192.168.0.1").IsPrivate }}'
+ true
+ $ gomplate -i '{{ $ip := net.ParseAddr (net.LookupIP "example.com") -}}
+ {{ $ip.Prefix 12 }}'
+ 93.176.0.0/12
- name: net.ParseIP
+ deprecated: Use [`net.ParseAddr`](#net-parseaddr) instead.
description: |
Parse the given string as an IP address (a `netaddr.IP` from the
[`inet.af/netaddr`](https://pkg.go.dev/inet.af/netaddr) package).
@@ -145,7 +165,31 @@ funcs:
$ gomplate -i '{{ $ip := net.ParseIP (net.LookupIP "example.com") -}}
{{ $ip.Prefix 12 }}'
93.176.0.0/12
+ - name: net.ParsePrefix
+ description: |
+ Parse the given string as an IP address prefix (CIDR) representing an IP
+ network (a [`netip.Prefix`](https://pkg.go.dev/net/netip#Prefix)).
+
+ The string can be in the form `"192.168.1.0/24"` or `"2001::db8::/32"`,
+ the CIDR notations defined in [RFC 4632][] and [RFC 4291][].
+
+ Any of `netip.Prefix`'s methods may be called on the resulting value. See
+ [the docs](https://pkg.go.dev/net/netip#Prefix) for details.
+ pipeline: true
+ arguments:
+ - name: prefix
+ required: true
+ description: The IP address prefix to parse. It must represent either an IPv4 or IPv6 prefix, containing a `/`.
+ examples:
+ - |
+ $ gomplate -i '{{ (net.ParsePrefix "192.168.0.0/24").Range }}'
+ 192.168.0.0-192.168.0.255
+ $ gomplate -i '{{ $ip := net.ParseAddr (net.LookupIP "example.com") -}}
+ {{ $net := net.ParsePrefix "93.184.0.0/16" -}}
+ {{ $net.Contains $ip }}'
+ true
- name: net.ParseIPPrefix
+ deprecated: Use [`net.ParsePrefix`](#net-parseprefix) instead.
description: |
Parse the given string as an IP address prefix (CIDR) representing an IP
network (a `netaddr.IPPrefix` from the
@@ -172,7 +216,36 @@ funcs:
$ gomplate -i '{{ $net := net.ParseIPPrefix "93.184.0.0/12" -}}
{{ $net.Range }}'
93.176.0.0-93.191.255.255
+ - name: net.ParseRange
+ experimental: true
+ description: |
+ Parse the given string as an inclusive range of IP addresses from the same
+ address family (a [`netipx.IPRange`](https://pkg.go.dev/go4.org/netipx#IPRange)
+ from the [`go4.org/netipx`](https://pkg.go.dev/go4.org/netipx) module).
+
+ The string must contain a hyphen (`-`).
+
+ Any of `netipx.IPRange`'s methods may be called on the resulting value.
+ See [the docs](https://pkg.go.dev/go4.org/netipx#IPRange) for details.
+
+ Note that this function is experimental for now, because it uses a
+ [third-party module](https://pkg.go.dev/go4.org/netipx) which may be
+ brought into the standard library in the future, which may require
+ breaking changes to this function.
+ pipeline: true
+ arguments:
+ - name: iprange
+ required: true
+ description: The IP address range to parse. It must represent either an IPv4 or IPv6 range, containing a `-`.
+ examples:
+ - |
+ $ gomplate -i '{{ (net.ParseRange "192.168.0.0-192.168.0.255").To }}'
+ 192.168.0.255
+ $ gomplate -i '{{ $range := net.ParseRange "1.2.3.0-1.2.3.233" -}}
+ {{ $range.Prefixes }}'
+ [1.2.3.0/25 1.2.3.128/26 1.2.3.192/27 1.2.3.224/29 1.2.3.232/31]
- name: net.ParseIPRange
+ deprecated: Use [`net.ParseRange`](#net-parserange) instead.
description: |
Parse the given string as an inclusive range of IP addresses from the same
address family (a `netaddr.IPRange` from the [`inet.af/netaddr`][] package).