Skip to content

Commit

Permalink
Merge 9d5c362 into 638dea3
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-stoler committed Aug 17, 2020
2 parents 638dea3 + 9d5c362 commit a7676c6
Show file tree
Hide file tree
Showing 6 changed files with 1,606 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/main/java/org/xbill/DNS/HTTPSRecord.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// SPDX-License-Identifier: BSD-2-Clause
package org.xbill.DNS;

import java.util.List;

/**
* HTTPS Service Location and Parameter Binding Record
*
* @see <a
* href="https://tools.ietf.org/html/draft-ietf-dnsop-svcb-https-01">draft-ietf-dnsop-svcb-https</a>
*/
public class HTTPSRecord extends SVCBBase {
HTTPSRecord() {}

public HTTPSRecord(
Name name, int dclass, long ttl, int priority, Name domain, List<ParameterBase> params) {
super(name, Type.HTTPS, dclass, ttl, priority, domain, params);
}
}

0 comments on commit a7676c6

Please sign in to comment.