summaryrefslogtreecommitdiff
path: root/recording/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'recording/config.go')
-rw-r--r--recording/config.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/recording/config.go b/recording/config.go
index 6d8704b..c38d73f 100644
--- a/recording/config.go
+++ b/recording/config.go
@@ -1,6 +1,7 @@
package recording
import (
+ "bilibili-livestream-archiver/bilibili"
"bilibili-livestream-archiver/common"
"fmt"
)
@@ -13,9 +14,10 @@ type TaskConfig struct {
}
type TransportConfig struct {
- SocketTimeoutSeconds int `mapstructure:"socket_timeout_seconds"`
- RetryIntervalSeconds int `mapstructure:"retry_interval_seconds"`
- MaxRetryTimes int `mapstructure:"max_retry_times"`
+ SocketTimeoutSeconds int `mapstructure:"socket_timeout_seconds"`
+ RetryIntervalSeconds int `mapstructure:"retry_interval_seconds"`
+ MaxRetryTimes int `mapstructure:"max_retry_times"`
+ AllowedNetworkTypes []bilibili.IpNetType `mapstructure:"allowed_network_types"`
}
type DownloadConfig struct {