mirror of
				https://github.com/optim-enterprises-bv/Xray-core.git
				synced 2025-10-31 18:47:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1018 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1018 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package splithttp
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"io"
 | |
| 	"io/ioutil"
 | |
| 	gonet "net"
 | |
| 
 | |
| 	"github.com/xtls/xray-core/transport/internet/browser_dialer"
 | |
| 	"github.com/xtls/xray-core/transport/internet/websocket"
 | |
| )
 | |
| 
 | |
| // implements splithttp.DialerClient in terms of browser dialer
 | |
| // has no fields because everything is global state :O)
 | |
| type BrowserDialerClient struct{}
 | |
| 
 | |
| func (c *BrowserDialerClient) OpenDownload(ctx context.Context, baseURL string) (io.ReadCloser, gonet.Addr, gonet.Addr, error) {
 | |
| 	conn, err := browser_dialer.DialGet(baseURL)
 | |
| 	dummyAddr := &gonet.IPAddr{}
 | |
| 	if err != nil {
 | |
| 		return nil, dummyAddr, dummyAddr, err
 | |
| 	}
 | |
| 
 | |
| 	return websocket.NewConnection(conn, dummyAddr, nil), conn.RemoteAddr(), conn.LocalAddr(), nil
 | |
| }
 | |
| 
 | |
| func (c *BrowserDialerClient) SendUploadRequest(ctx context.Context, url string, payload io.ReadWriteCloser, contentLength int64) error {
 | |
| 	bytes, err := ioutil.ReadAll(payload)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	err = browser_dialer.DialPost(url, bytes)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	return nil
 | |
| }
 | 
