-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #678 the issue where the version number string cannot be found in…
… the dynamic library of boringssl. (#679) Signed-off-by: CFC4N <[email protected]>
- Loading branch information
Showing
5 changed files
with
54 additions
and
38 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
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 |
---|---|---|
|
@@ -39,7 +39,7 @@ const ( | |
CliDescription = "Capturing SSL/TLS plaintext without a CA certificate using eBPF. Supported on Linux/Android kernels for amd64/arm64." | ||
CliHomepage = "https://ecapture.cc" | ||
CliAuthor = "CFC4N <[email protected]>" | ||
CliRepo = "https://github.com/gojue/ecapture" | ||
CliGithubRepo = "https://github.com/gojue/ecapture" | ||
) | ||
|
||
var ( | ||
|
@@ -198,7 +198,7 @@ func runModule(modName string, modConfig config.IConfig) { | |
// init eCapture | ||
logger.Info().Str("AppName", fmt.Sprintf("%s(%s)", CliName, CliNameZh)).Send() | ||
logger.Info().Str("HomePage", CliHomepage).Send() | ||
logger.Info().Str("Repository", CliRepo).Send() | ||
logger.Info().Str("Repository", CliGithubRepo).Send() | ||
logger.Info().Str("Author", CliAuthor).Send() | ||
logger.Info().Str("Description", CliDescription).Send() | ||
logger.Info().Str("Version", GitVersion).Send() | ||
|
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
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
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