mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
719 B
23 lines
719 B
package conf |
|
|
|
type ConfigureFilePostProcessingStage interface { |
|
Process(conf *Config) error |
|
} |
|
|
|
var configureFilePostProcessingStages map[string]ConfigureFilePostProcessingStage |
|
|
|
func RegisterConfigureFilePostProcessingStage(name string, stage ConfigureFilePostProcessingStage) { |
|
if configureFilePostProcessingStages == nil { |
|
configureFilePostProcessingStages = make(map[string]ConfigureFilePostProcessingStage) |
|
} |
|
configureFilePostProcessingStages[name] = stage |
|
} |
|
|
|
func PostProcessConfigureFile(conf *Config) error { |
|
for k, v := range configureFilePostProcessingStages { |
|
if err := v.Process(conf); err != nil { |
|
return newError("Rejected by Postprocessing Stage ", k).AtError().Base(err) |
|
} |
|
} |
|
return nil |
|
}
|
|
|