File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
cpp/ql/src/semmle/code/cpp/models/interfaces Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,13 @@ abstract class RemoteFlowSourceFunction extends Function {
2020 abstract predicate hasRemoteFlowSource ( FunctionOutput output , string description ) ;
2121}
2222
23+ /**
24+ * DEPRECATED: Use `RemoteFlowSourceFunction` instead.
25+ *
26+ * A library function that returns data that may be read from a network connection.
27+ */
28+ deprecated class RemoteFlowFunction = RemoteFlowSourceFunction ;
29+
2330/**
2431 * A library function that returns data that is directly controlled by a user.
2532 */
@@ -30,6 +37,13 @@ abstract class LocalFlowSourceFunction extends Function {
3037 abstract predicate hasLocalFlowSource ( FunctionOutput output , string description ) ;
3138}
3239
40+ /**
41+ * DEPRECATED: Use `LocalFlowSourceFunction` instead.
42+ *
43+ * A library function that returns data that is directly controlled by a user.
44+ */
45+ deprecated class LocalFlowFunction = LocalFlowSourceFunction ;
46+
3347/** A library function that sends data over a network connection. */
3448abstract class RemoteFlowSinkFunction extends Function {
3549 /**
You can’t perform that action at this time.
0 commit comments