@@ -14,7 +14,7 @@ import (
14
14
// SVCBKey is the type of the keys used in the SVCB RR.
15
15
type SVCBKey uint16
16
16
17
- // Keys defined in draft-ietf-dnsop-svcb-https-08 Section 14.3.2.
17
+ // Keys defined in rfc9460
18
18
const (
19
19
SVCB_MANDATORY SVCBKey = iota
20
20
SVCB_ALPN
@@ -23,7 +23,8 @@ const (
23
23
SVCB_IPV4HINT
24
24
SVCB_ECHCONFIG
25
25
SVCB_IPV6HINT
26
- SVCB_DOHPATH // draft-ietf-add-svcb-dns-02 Section 9
26
+ SVCB_DOHPATH // rfc9461 Section 5
27
+ SVCB_OHTTP // rfc9540 Section 8
27
28
28
29
svcb_RESERVED SVCBKey = 65535
29
30
)
@@ -37,6 +38,7 @@ var svcbKeyToStringMap = map[SVCBKey]string{
37
38
SVCB_ECHCONFIG : "ech" ,
38
39
SVCB_IPV6HINT : "ipv6hint" ,
39
40
SVCB_DOHPATH : "dohpath" ,
41
+ SVCB_OHTTP : "ohttp" ,
40
42
}
41
43
42
44
var svcbStringToKeyMap = reverseSVCBKeyMap (svcbKeyToStringMap )
@@ -201,6 +203,8 @@ func makeSVCBKeyValue(key SVCBKey) SVCBKeyValue {
201
203
return new (SVCBIPv6Hint )
202
204
case SVCB_DOHPATH :
203
205
return new (SVCBDoHPath )
206
+ case SVCB_OHTTP :
207
+ return new (SVCBOhttp )
204
208
case svcb_RESERVED :
205
209
return nil
206
210
default :
@@ -771,8 +775,8 @@ func (s *SVCBIPv6Hint) copy() SVCBKeyValue {
771
775
// SVCBDoHPath pair is used to indicate the URI template that the
772
776
// clients may use to construct a DNS over HTTPS URI.
773
777
//
774
- // See RFC xxxx (https://datatracker.ietf.org/doc/html/draft-ietf-add-svcb-dns-02 )
775
- // and RFC yyyy (https://datatracker.ietf.org/doc/html/draft-ietf-add-ddr-06 ).
778
+ // See RFC 9461 (https://datatracker.ietf.org/doc/html/rfc9461 )
779
+ // and RFC 9462 (https://datatracker.ietf.org/doc/html/rfc9462 ).
776
780
//
777
781
// A basic example of using the dohpath option together with the alpn
778
782
// option to indicate support for DNS over HTTPS on a certain path:
@@ -816,6 +820,44 @@ func (s *SVCBDoHPath) copy() SVCBKeyValue {
816
820
}
817
821
}
818
822
823
+ // The "ohttp" SvcParamKey is used to indicate that a service described in a SVCB RR
824
+ // can be accessed as a target using an associated gateway.
825
+ // Both the presentation and wire-format values for the "ohttp" parameter MUST be empty.
826
+ //
827
+ // See RFC 9460 (https://datatracker.ietf.org/doc/html/rfc9460/)
828
+ // and RFC 9230 (https://datatracker.ietf.org/doc/html/rfc9230/)
829
+ //
830
+ // A basic example of using the dohpath option together with the alpn
831
+ // option to indicate support for DNS over HTTPS on a certain path:
832
+ //
833
+ // s := new(dns.SVCB)
834
+ // s.Hdr = dns.RR_Header{Name: ".", Rrtype: dns.TypeSVCB, Class: dns.ClassINET}
835
+ // e := new(dns.SVCBAlpn)
836
+ // e.Alpn = []string{"h2", "h3"}
837
+ // p := new(dns.SVCBOhttp)
838
+ // s.Value = append(s.Value, e, p)
839
+ type SVCBOhttp struct {}
840
+
841
+ func (* SVCBOhttp ) Key () SVCBKey { return SVCB_OHTTP }
842
+ func (* SVCBOhttp ) copy () SVCBKeyValue { return & SVCBOhttp {} }
843
+ func (* SVCBOhttp ) pack () ([]byte , error ) { return []byte {}, nil }
844
+ func (* SVCBOhttp ) String () string { return "" }
845
+ func (* SVCBOhttp ) len () int { return 0 }
846
+
847
+ func (* SVCBOhttp ) unpack (b []byte ) error {
848
+ if len (b ) != 0 {
849
+ return errors .New ("dns: svcbotthp: svcbotthp must have no value" )
850
+ }
851
+ return nil
852
+ }
853
+
854
+ func (* SVCBOhttp ) parse (b string ) error {
855
+ if b != "" {
856
+ return errors .New ("dns: svcbotthp: svcbotthp must have no value" )
857
+ }
858
+ return nil
859
+ }
860
+
819
861
// SVCBLocal pair is intended for experimental/private use. The key is recommended
820
862
// to be in the range [SVCB_PRIVATE_LOWER, SVCB_PRIVATE_UPPER].
821
863
// Basic use pattern for creating a keyNNNNN option:
0 commit comments