(bound *nativeBoundSessionScope, channel string)
| 4827 | } |
| 4828 | |
| 4829 | func nativeBoundSessionAllowsChannel(bound *nativeBoundSessionScope, channel string) bool { |
| 4830 | if bound == nil || len(bound.networkChannels) == 0 { |
| 4831 | return true |
| 4832 | } |
| 4833 | _, ok := bound.networkChannels[strings.TrimSpace(channel)] |
| 4834 | return ok |
| 4835 | } |
| 4836 | |
| 4837 | func nativeFilterNetworkChannelPayloads( |
| 4838 | bound *nativeBoundSessionScope, |
no outgoing calls
no test coverage detected