merge upstream & solve conflict
This commit is contained in:
@@ -1,27 +1,10 @@
|
||||
--- a/route/route.go
|
||||
+++ b/route/route.go
|
||||
@@ -421,19 +421,19 @@
|
||||
} else {
|
||||
if processInfo.ProcessPath != "" {
|
||||
if processInfo.UserName != "" {
|
||||
- r.logger.InfoContext(ctx, "found process path: ", processInfo.ProcessPath, ", user: ", processInfo.UserName)
|
||||
+ r.logger.DebugContext(ctx, "found process path: ", processInfo.ProcessPath, ", user: ", processInfo.UserName) // OMV: info -> debug
|
||||
} else if processInfo.UserId != -1 {
|
||||
- r.logger.InfoContext(ctx, "found process path: ", processInfo.ProcessPath, ", user id: ", processInfo.UserId)
|
||||
+ r.logger.DebugContext(ctx, "found process path: ", processInfo.ProcessPath, ", user id: ", processInfo.UserId) // OMV: info -> debug
|
||||
} else {
|
||||
- r.logger.InfoContext(ctx, "found process path: ", processInfo.ProcessPath)
|
||||
+ r.logger.DebugContext(ctx, "found process path: ", processInfo.ProcessPath) // OMV: info -> debug
|
||||
}
|
||||
} else if processInfo.AndroidPackageName != "" {
|
||||
r.logger.InfoContext(ctx, "found package name: ", processInfo.AndroidPackageName)
|
||||
} else if processInfo.UserId != -1 {
|
||||
if processInfo.UserName != "" {
|
||||
- r.logger.InfoContext(ctx, "found user: ", processInfo.UserName)
|
||||
+ r.logger.DebugContext(ctx, "found user: ", processInfo.UserName) // OMV: info -> debug
|
||||
} else {
|
||||
- r.logger.InfoContext(ctx, "found user id: ", processInfo.UserId)
|
||||
+ r.logger.DebugContext(ctx, "found user id: ", processInfo.UserId) // OMV: info -> debug
|
||||
@@ -372,6 +372,7 @@
|
||||
}
|
||||
}
|
||||
metadata.ProcessInfo = processInfo
|
||||
} else {
|
||||
+ // OMV: some codes about process routing are deleted here for unknown reason, it may break something.
|
||||
for _, address := range metadata.DestinationAddresses {
|
||||
if address.Is6() {
|
||||
newDestination = address
|
||||
|
||||
Reference in New Issue
Block a user