format code

pull/298/head
V2Ray 2015-09-09 17:39:25 +02:00
parent 19308037e5
commit f09d65b2e5
3 changed files with 92 additions and 92 deletions

View File

@ -1,6 +1,6 @@
package io
import(
import (
"errors"
)
@ -56,7 +56,7 @@ func (bSet *VBufferSet) FetchBuffer(minSize int) []byte {
return make([]byte, minSize)
}
select {
case buffer = <- byteChan:
case buffer = <-byteChan:
default:
buffer = make([]byte, minSize)
}

View File

@ -1,8 +1,8 @@
package tcp
import (
"net"
"io"
"net"
)
type VFreeConnection struct {