mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
Add distinct IP counter
This commit is contained in:
parent
97dea533da
commit
211254fa98
8 changed files with 307 additions and 0 deletions
9
common/ipsetsink/sinkcluster/common.go
Normal file
9
common/ipsetsink/sinkcluster/common.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package sinkcluster
|
||||
|
||||
import "time"
|
||||
|
||||
type SinkEntry struct {
|
||||
RecordingStart time.Time `json:"recordingStart"`
|
||||
RecordingEnd time.Time `json:"recordingEnd"`
|
||||
Recorded []byte `json:"recorded"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue