mirror of https://github.com/XTLS/Xray-core
				
				
				
			Update dependencies
							parent
							
								
									55efac7236
								
							
						
					
					
						commit
						172f353bd7
					
				
							
								
								
									
										2
									
								
								go.mod
								
								
								
								
							
							
						
						
									
										2
									
								
								go.mod
								
								
								
								
							|  | @ -14,7 +14,7 @@ require ( | |||
| 	github.com/quic-go/quic-go v0.33.0 | ||||
| 	github.com/refraction-networking/utls v1.2.3-0.20230308205431-4f1df6c200db | ||||
| 	github.com/sagernet/sing v0.2.0 | ||||
| 	github.com/sagernet/sing-shadowsocks v0.1.1 | ||||
| 	github.com/sagernet/sing-shadowsocks v0.2.0 | ||||
| 	github.com/sagernet/wireguard-go v0.0.0-20221116151939-c99467f53f2c | ||||
| 	github.com/seiflotfy/cuckoofilter v0.0.0-20220411075957-e3b120b3f5fb | ||||
| 	github.com/stretchr/testify v1.8.2 | ||||
|  |  | |||
							
								
								
									
										6
									
								
								go.sum
								
								
								
								
							
							
						
						
									
										6
									
								
								go.sum
								
								
								
								
							|  | @ -141,12 +141,10 @@ github.com/refraction-networking/utls v1.2.3-0.20230308205431-4f1df6c200db/go.mo | |||
| github.com/riobard/go-bloom v0.0.0-20200614022211-cdc8013cb5b3 h1:f/FNXud6gA3MNr8meMVVGxhp+QBTqY91tM8HjEuMjGg= | ||||
| github.com/riobard/go-bloom v0.0.0-20200614022211-cdc8013cb5b3/go.mod h1:HgjTstvQsPGkxUsCd2KWxErBblirPizecHcpD3ffK+s= | ||||
| github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= | ||||
| github.com/sagernet/sing v0.1.9-0.20230315063014-2731df16725b h1:1iKGftQ59+shDSx2RaLaxXJcMK/B+IU9WqUPwyBW+E0= | ||||
| github.com/sagernet/sing v0.1.9-0.20230315063014-2731df16725b/go.mod h1:9uHswk2hITw8leDbiLS/xn0t9nzBcbePxzm9PJhwdlw= | ||||
| github.com/sagernet/sing v0.2.0 h1:iyc4TaeXG5XYXixl48zSDDTw46C9NOEAVFq6ZE0dA2k= | ||||
| github.com/sagernet/sing v0.2.0/go.mod h1:9uHswk2hITw8leDbiLS/xn0t9nzBcbePxzm9PJhwdlw= | ||||
| github.com/sagernet/sing-shadowsocks v0.1.1 h1:uFK2rlVeD/b1xhDwSMbUI2goWc6fOKxp+ZeKHZq6C9Q= | ||||
| github.com/sagernet/sing-shadowsocks v0.1.1/go.mod h1:f3mHTy5shnVM9l8UocMlJgC/1G/zdj5FuEuVXhDinGU= | ||||
| github.com/sagernet/sing-shadowsocks v0.2.0 h1:ILDWL7pwWfkPLEbviE/MyCgfjaBmJY/JVVY+5jhSb58= | ||||
| github.com/sagernet/sing-shadowsocks v0.2.0/go.mod h1:ysYzszRLpNzJSorvlWRMuzU6Vchsp7sd52q+JNY4axw= | ||||
| github.com/sagernet/wireguard-go v0.0.0-20221116151939-c99467f53f2c h1:vK2wyt9aWYHHvNLWniwijBu/n4pySypiKRhN32u/JGo= | ||||
| github.com/sagernet/wireguard-go v0.0.0-20221116151939-c99467f53f2c/go.mod h1:euOmN6O5kk9dQmgSS8Df4psAl3TCjxOz0NW60EWkSaI= | ||||
| github.com/seiflotfy/cuckoofilter v0.0.0-20220411075957-e3b120b3f5fb h1:XfLJSPIOUX+osiMraVgIrMR27uMXnRJWGm1+GL8/63U= | ||||
|  |  | |||
|  | @ -50,7 +50,7 @@ func NewServer(ctx context.Context, config *ServerConfig) (*Inbound, error) { | |||
| 	if !C.Contains(shadowaead_2022.List, config.Method) { | ||||
| 		return nil, newError("unsupported method ", config.Method) | ||||
| 	} | ||||
| 	service, err := shadowaead_2022.NewServiceWithPassword(config.Method, config.Key, 500, inbound) | ||||
| 	service, err := shadowaead_2022.NewServiceWithPassword(config.Method, config.Key, 500, inbound, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, newError("create service").Base(err) | ||||
| 	} | ||||
|  |  | |||
|  | @ -58,7 +58,7 @@ func NewMultiServer(ctx context.Context, config *MultiUserServerConfig) (*MultiU | |||
| 	if err != nil { | ||||
| 		return nil, newError("parse config").Base(err) | ||||
| 	} | ||||
| 	service, err := shadowaead_2022.NewMultiService[int](config.Method, psk, 500, inbound) | ||||
| 	service, err := shadowaead_2022.NewMultiService[int](config.Method, psk, 500, inbound, nil) | ||||
| 	if err != nil { | ||||
| 		return nil, newError("create service").Base(err) | ||||
| 	} | ||||
|  |  | |||
|  | @ -47,7 +47,7 @@ func NewClient(ctx context.Context, config *ClientConfig) (*Outbound, error) { | |||
| 		if config.Key == "" { | ||||
| 			return nil, newError("missing psk") | ||||
| 		} | ||||
| 		method, err := shadowaead_2022.NewWithPassword(config.Method, config.Key) | ||||
| 		method, err := shadowaead_2022.NewWithPassword(config.Method, config.Key, nil) | ||||
| 		if err != nil { | ||||
| 			return nil, newError("create method").Base(err) | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 世界
						世界