You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* A function call that sends or receives data over a network.
22
+
*/
23
+
abstractclassNetworkSendRecvextendsFunctionCall{
24
+
/**
25
+
* Gets the expression for the buffer to be sent from / received into.
26
+
*/
27
+
abstractExprgetDataExpr();
28
+
}
29
+
30
+
/**
31
+
* A function call that sends data over a network.
32
+
*
33
+
* note: functions such as `read` may be reading from a network source or a file. We could attempt to determine which, and sort results into `cpp/cleartext-transmission` and perhaps `cpp/cleartext-storage-file`. In practice it probably isn't very important which query reports a result as long as its reported exactly once.
0 commit comments