-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing SPDX info to native-connect-hook
- Loading branch information
Showing
1 changed file
with
4 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,10 @@ | |
* the proxy receives all connections (and so will see if connections don't trust its CA). It's still useful | ||
* to do proxy config alongside this, as applications may behave a little more 'correctly' if they're aware | ||
* they're using a proxy rather than doing so unknowingly. | ||
* | ||
* Source available at https://github.com/httptoolkit/frida-interception-and-unpinning/ | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
* SPDX-FileCopyrightText: Tim Perry <[email protected]> | ||
*/ | ||
|
||
const PROXY_HOST_IPv4_BYTES = PROXY_HOST.split('.').map(part => parseInt(part, 10)); | ||
|