Documentation ¶
Index ¶
- type Manager
- type State
- func (st *State) AddRepro(name string, repro []byte) error
- func (st *State) Connect(name, domain string, fresh bool, calls []string, corpus [][]byte) error
- func (st *State) Flush()
- func (st *State) PendingRepro(name string) ([]byte, error)
- func (st *State) PurgeOldManagers() error
- func (st *State) Sync(name string, add [][]byte, del []string) (string, []rpctype.HubInput, int, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manager ¶
type Manager struct { Domain string Connected time.Time Added int Deleted int New int SentRepros int RecvRepros int Calls map[string]struct{} Corpus *db.DB // contains filtered or unexported fields }
Manager represents one syz-manager instance.
type State ¶
type State struct { Corpus *db.DB Repros *db.DB Managers map[string]*Manager // contains filtered or unexported fields }
State holds all internal syz-hub state including corpus, reproducers and information about managers. It is persisted to and can be restored from a directory.
func (*State) PurgeOldManagers ¶
Click to show internal directories.
Click to hide internal directories.