mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-16 12:35:54 +00:00
1. **Fixed XPadding Placement Dropdown**: - Added the missing `cookie` and `query` options to `xPaddingPlacement` (`stream_xhttp.html`). - *Why:* Previously, users wanting `cookie` obfuscation were forced to use the `header` placement string. This caused Xray-core to blindly intercept the entire monolithic HTTP Cookie header, failing internal padding-length validations and causing the inbound to silently drop the connection. 2. **Fixed Uplink Data Placement Validation**: - Replaced the unsupported `query` option with `cookie` in `uplinkDataPlacement`. - *Why:* Xray-core's `transport_internet.go` explicitly forbids `query` as an uplink placement option. Selecting it from the UI previously sent a payload that would cause Xray-core to instantly throw an `unsupported uplink data placement: query` panic. Adding `cookie` perfectly aligns the UI with Xray-core restrictions. ### Related Issues - Resolves #3992
39 lines
733 B
Go
39 lines
733 B
Go
package buf
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
type windowsReader struct {
|
|
bufs []syscall.WSABuf
|
|
}
|
|
|
|
func (r *windowsReader) Init(bs []*Buffer) {
|
|
if r.bufs == nil {
|
|
r.bufs = make([]syscall.WSABuf, 0, len(bs))
|
|
}
|
|
for _, b := range bs {
|
|
r.bufs = append(r.bufs, syscall.WSABuf{Len: uint32(Size), Buf: &b.v[0]})
|
|
}
|
|
}
|
|
|
|
func (r *windowsReader) Clear() {
|
|
for idx := range r.bufs {
|
|
r.bufs[idx].Buf = nil
|
|
}
|
|
r.bufs = r.bufs[:0]
|
|
}
|
|
|
|
func (r *windowsReader) Read(fd uintptr) int32 {
|
|
var nBytes uint32
|
|
var flags uint32
|
|
err := syscall.WSARecv(syscall.Handle(fd), &r.bufs[0], uint32(len(r.bufs)), &nBytes, &flags, nil, nil)
|
|
if err != nil {
|
|
return -1
|
|
}
|
|
return int32(nBytes)
|
|
}
|
|
|
|
func newMultiReader() multiReader {
|
|
return new(windowsReader)
|
|
}
|