1 Star 0 Fork 0

buwei/brook

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
util.go 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
txthinking 提交于 2020-03-27 21:53 . love github.com/txthinking/runnergroup
// Copyright (c) 2016-present Cloud <[email protected]>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of version 3 of the GNU General Public
// License as published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package brook
import (
"net"
"net/url"
"github.com/txthinking/socks5"
)
func ErrorReply(r *socks5.Request, c *net.TCPConn, e error) error {
var p *socks5.Reply
if r.Atyp == socks5.ATYPIPv4 || r.Atyp == socks5.ATYPDomain {
p = socks5.NewReply(socks5.RepConnectionRefused, socks5.ATYPIPv4, net.IPv4zero, []byte{0x00, 0x00})
} else {
p = socks5.NewReply(socks5.RepConnectionRefused, socks5.ATYPIPv6, net.IPv6zero, []byte{0x00, 0x00})
}
if _, err := p.WriteTo(c); err != nil {
return err
}
return e
}
func GetAddressFromURL(s string) (string, error) {
u, err := url.Parse(s)
if err != nil {
return "", err
}
if _, _, err := net.SplitHostPort(u.Host); err == nil {
return u.Host, nil
}
return net.JoinHostPort(u.Host, "80"), nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/narlian/brook.git
[email protected]:narlian/brook.git
narlian
brook
brook
master

搜索帮助