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 {
20
20
abstract predicate hasRemoteFlowSource ( FunctionOutput output , string description ) ;
21
21
}
22
22
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
+
23
30
/**
24
31
* A library function that returns data that is directly controlled by a user.
25
32
*/
@@ -30,6 +37,13 @@ abstract class LocalFlowSourceFunction extends Function {
30
37
abstract predicate hasLocalFlowSource ( FunctionOutput output , string description ) ;
31
38
}
32
39
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
+
33
47
/** A library function that sends data over a network connection. */
34
48
abstract class RemoteFlowSinkFunction extends Function {
35
49
/**
You can’t perform that action at this time.
0 commit comments