diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-12-18 15:50:46 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-12-18 15:50:46 +0900 |
| commit | 2f676c9d6e7baac289409cbcabde5b6e53b32ec3 (patch) | |
| tree | 87f1080df09147f25435cbc44be98dba0f85750b /internal/state | |
| parent | bbace8f84bfcdff7f6b769b129faac33d44bcb52 (diff) | |
fst: rename from fipc
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/state')
| -rw-r--r-- | internal/state/state.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/state/state.go b/internal/state/state.go index bb23932a..cf345aad 100644 --- a/internal/state/state.go +++ b/internal/state/state.go @@ -3,7 +3,7 @@ package state import ( "time" - "git.ophivana.moe/security/fortify/fipc" + "git.ophivana.moe/security/fortify/fst" ) type Store interface { @@ -27,11 +27,11 @@ type Backend interface { // State is the on-disk format for a fortified process's state information type State struct { // fortify instance id - ID [16]byte `json:"instance"` + ID fst.ID `json:"instance"` // child process PID value PID int `json:"pid"` // sealed app configuration - Config *fipc.Config `json:"config"` + Config *fst.Config `json:"config"` // process start time Time time.Time |
