-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cronjob - daily check of IETF modules. (#1579)
* Cronjob - daily check of IETF modules. * Cronjob - daily check of IETF modules. --------- Co-authored-by: Miroslav Kovac <[email protected]>
- Loading branch information
Showing
11 changed files
with
739 additions
and
619 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,7 @@ module ietf-http-server { | |
"WG Web: https://datatracker.ietf.org/wg/netconf | ||
WG List: NETCONF WG list <mailto:[email protected]> | ||
Author: Kent Watsen <mailto:[email protected]>"; | ||
|
||
description | ||
"This module defines reusable groupings for HTTP servers that | ||
can be used as a basis for specific HTTP server instances. | ||
|
@@ -71,7 +72,7 @@ module ietf-http-server { | |
(RFC 8174) when, and only when, they appear in all | ||
capitals, as shown here."; | ||
|
||
revision 2024-07-08 { | ||
revision 2024-08-15 { | ||
description | ||
"Initial version"; | ||
reference | ||
|
@@ -113,7 +114,6 @@ module ietf-http-server { | |
reference | ||
"RFC 9110: HTTP Semantics"; | ||
} | ||
|
||
feature tls-supported { | ||
description | ||
"Indicates that the server supports configuring HTTP | ||
|
@@ -229,10 +229,7 @@ module ietf-http-server { | |
choice transport { | ||
mandatory true; | ||
description | ||
"Choice amongst various transports type. TCP, with and | ||
without TLS are defined here, with 'feature' statements | ||
so that they may be disabled. Other transports MAY be | ||
augmented in as 'case' statements by future efforts."; | ||
"Choice amongst various transports type."; | ||
case tcp { | ||
if-feature "tcp-supported"; | ||
container tcp { | ||
|
@@ -246,7 +243,7 @@ module ietf-http-server { | |
refine "local-bind/local-port" { | ||
default "80"; | ||
description | ||
"The HTTP client will attempt to connect | ||
"The HTTP server will attempt to connect | ||
to the IANA-assigned well-known port for | ||
'http' (80) if no value is specified."; | ||
} | ||
|
@@ -273,7 +270,7 @@ module ietf-http-server { | |
refine "local-bind/local-port" { | ||
default "443"; | ||
description | ||
"The HTTP client will attempt to connect | ||
"The HTTP server will attempt to connect | ||
to the IANA-assigned well-known port for | ||
'https' (443) if no value is specified."; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.