@@ -91,26 +91,26 @@ abstract class TlsLibrary extends string {
91
91
/** Gets a name, which is a member of `version_constants`, that can be used to specify the protocol family `family`. */
92
92
abstract string unspecific_version_name ( ProtocolFamily family ) ;
93
93
94
- /** The module or class holding the version constants. */
94
+ /** Gets an API node representing the module or class holding the version constants. */
95
95
abstract API:: Node version_constants ( ) ;
96
96
97
- /** A dataflow node representing a specific protocol version. */
98
- DataFlow :: Node specific_version ( ProtocolVersion version ) {
99
- result = version_constants ( ) .getMember ( specific_version_name ( version ) ) . getAUse ( )
97
+ /** Gets an API node representing a specific protocol version. */
98
+ API :: Node specific_version ( ProtocolVersion version ) {
99
+ result = version_constants ( ) .getMember ( specific_version_name ( version ) )
100
100
}
101
101
102
- /** Gets a dataflow node representing the protocol family `family`. */
103
- DataFlow :: Node unspecific_version ( ProtocolFamily family ) {
104
- result = version_constants ( ) .getMember ( unspecific_version_name ( family ) ) . getAUse ( )
102
+ /** Gets an API node representing the protocol family `family`. */
103
+ API :: Node unspecific_version ( ProtocolFamily family ) {
104
+ result = version_constants ( ) .getMember ( unspecific_version_name ( family ) )
105
105
}
106
106
107
- /** The creation of a context with a default protocol. */
107
+ /** Gets a creation of a context with a default protocol. */
108
108
abstract ContextCreation default_context_creation ( ) ;
109
109
110
- /** The creation of a context with a specific protocol. */
110
+ /** Gets a creation of a context with a specific protocol. */
111
111
abstract ContextCreation specific_context_creation ( ) ;
112
112
113
- /** The creation of a context with a specific protocol version, known to be insecure. */
113
+ /** Gets a creation of a context with a specific protocol version, known to be insecure. */
114
114
ContextCreation insecure_context_creation ( ProtocolVersion version ) {
115
115
result in [ specific_context_creation ( ) , default_context_creation ( ) ] and
116
116
result .getProtocol ( ) = version and
@@ -123,15 +123,15 @@ abstract class TlsLibrary extends string {
123
123
result .getProtocol ( ) = family
124
124
}
125
125
126
- /** A connection is created in an insecure manner, not from a context. */
126
+ /** Gets a dataflow node representing a connection being created in an insecure manner, not from a context. */
127
127
abstract DataFlow:: Node insecure_connection_creation ( ProtocolVersion version ) ;
128
128
129
- /** A connection is created from a context. */
129
+ /** Gets a dataflow node representing a connection being created from a context. */
130
130
abstract ConnectionCreation connection_creation ( ) ;
131
131
132
- /** A context is being restricted on which protocols it can accepts. */
132
+ /** Gets a dataflow node representing a context being restricted on which protocols it can accepts. */
133
133
abstract ProtocolRestriction protocol_restriction ( ) ;
134
134
135
- /** A context is being relaxed on which protocols it can accepts. */
135
+ /** Gets a dataflow node representing a context being relaxed on which protocols it can accepts. */
136
136
abstract ProtocolUnrestriction protocol_unrestriction ( ) ;
137
137
}
0 commit comments