mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
remove unused code
This commit is contained in:
parent
fe46abb6c2
commit
9d2bd2e822
1 changed files with 3 additions and 12 deletions
|
@ -20,13 +20,6 @@ type udpHopPacketConn struct {
|
|||
closed bool
|
||||
}
|
||||
|
||||
type udpPacket struct {
|
||||
Buf []byte
|
||||
N int
|
||||
Addr net.Addr
|
||||
Err error
|
||||
}
|
||||
|
||||
func NewUDPHopPacketConn(addr *UDPHopAddr, hopInterval time.Duration) (net.PacketConn, error) {
|
||||
if hopInterval == 0 {
|
||||
hopInterval = defaultHopInterval
|
||||
|
@ -56,11 +49,9 @@ func (u *udpHopPacketConn) hopLoop() {
|
|||
ticker := time.NewTicker(u.HopInterval)
|
||||
defer ticker.Stop()
|
||||
for {
|
||||
select {
|
||||
case <-ticker.C:
|
||||
if u.hop() {
|
||||
return
|
||||
}
|
||||
<-ticker.C
|
||||
if u.hop() {
|
||||
return
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue