mirror of
https://github.com/safing/portmaster
synced 2025-09-16 09:49:39 +00:00
Add additional field to internal SQL model
This commit is contained in:
parent
15f85b5ae9
commit
d93c3f60ce
2 changed files with 12 additions and 0 deletions
|
@ -177,6 +177,7 @@ func convertConnection(conn *network.Connection) (*Conn, error) {
|
|||
ProfileID: conn.ProcessContext.Source + "/" + conn.ProcessContext.Profile,
|
||||
Path: conn.ProcessContext.BinaryPath,
|
||||
ProfileRevision: int(conn.ProfileRevisionCounter),
|
||||
ProfileName: conn.ProcessContext.ProfileName,
|
||||
}
|
||||
|
||||
switch conn.Type {
|
||||
|
@ -200,6 +201,9 @@ func convertConnection(conn *network.Connection) (*Conn, error) {
|
|||
if conn.Ended > 0 {
|
||||
ended := time.Unix(conn.Ended, 0)
|
||||
c.Ended = &ended
|
||||
c.Active = false
|
||||
} else {
|
||||
c.Active = true
|
||||
}
|
||||
|
||||
extraData := map[string]interface{}{
|
||||
|
@ -210,6 +214,7 @@ func convertConnection(conn *network.Connection) (*Conn, error) {
|
|||
extraData["tunnel"] = conn.TunnelContext
|
||||
exitNode := conn.TunnelContext.GetExitNodeID()
|
||||
c.ExitNode = &exitNode
|
||||
c.SPNUsed = true
|
||||
}
|
||||
|
||||
if conn.DNSContext != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue