mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
079d0bd8a9
* Refactor log * Add new log methods * Fix logger test * Change all logging code * Clean up pathObj * Rebase to latest main * Remove invoking method name after the dot
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
package reality
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"net"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/xtls/reality"
|
|
"github.com/xtls/xray-core/common/errors"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
)
|
|
|
|
func (c *Config) GetREALITYConfig() *reality.Config {
|
|
var dialer net.Dialer
|
|
config := &reality.Config{
|
|
DialContext: dialer.DialContext,
|
|
|
|
Show: c.Show,
|
|
Type: c.Type,
|
|
Dest: c.Dest,
|
|
Xver: byte(c.Xver),
|
|
|
|
PrivateKey: c.PrivateKey,
|
|
MinClientVer: c.MinClientVer,
|
|
MaxClientVer: c.MaxClientVer,
|
|
MaxTimeDiff: time.Duration(c.MaxTimeDiff) * time.Millisecond,
|
|
|
|
NextProtos: nil, // should be nil
|
|
SessionTicketsDisabled: true,
|
|
|
|
KeyLogWriter: KeyLogWriterFromConfig(c),
|
|
}
|
|
config.ServerNames = make(map[string]bool)
|
|
for _, serverName := range c.ServerNames {
|
|
config.ServerNames[serverName] = true
|
|
}
|
|
config.ShortIds = make(map[[8]byte]bool)
|
|
for _, shortId := range c.ShortIds {
|
|
config.ShortIds[*(*[8]byte)(shortId)] = true
|
|
}
|
|
return config
|
|
}
|
|
|
|
func KeyLogWriterFromConfig(c *Config) io.Writer {
|
|
if len(c.MasterKeyLog) <= 0 || c.MasterKeyLog == "none" {
|
|
return nil
|
|
}
|
|
|
|
writer, err := os.OpenFile(c.MasterKeyLog, os.O_CREATE|os.O_RDWR|os.O_APPEND, 0644)
|
|
if err != nil {
|
|
errors.LogErrorInner(context.Background(), err, "failed to open ", c.MasterKeyLog, " as master key log")
|
|
}
|
|
|
|
return writer
|
|
}
|
|
|
|
func ConfigFromStreamSettings(settings *internet.MemoryStreamConfig) *Config {
|
|
if settings == nil {
|
|
return nil
|
|
}
|
|
config, ok := settings.SecuritySettings.(*Config)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
return config
|
|
}
|