1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-14 05:16:25 -05:00

Remove debug infomation

This commit is contained in:
V2Ray 2015-09-14 00:30:50 +02:00
parent d12737b3b8
commit 919fd5b16b
2 changed files with 3 additions and 6 deletions

View File

@ -25,7 +25,6 @@ func NewCryptionReader(stream cipher.Stream, reader io.Reader) *CryptionReader {
// a multiply of BlockSize() // a multiply of BlockSize()
func (reader CryptionReader) Read(blocks []byte) (int, error) { func (reader CryptionReader) Read(blocks []byte) (int, error) {
nBytes, err := reader.reader.Read(blocks) nBytes, err := reader.reader.Read(blocks)
log.Debug("CryptionReader: Read %d bytes", nBytes)
if nBytes > 0 { if nBytes > 0 {
reader.stream.XORKeyStream(blocks[:nBytes], blocks[:nBytes]) reader.stream.XORKeyStream(blocks[:nBytes], blocks[:nBytes])
} }
@ -52,7 +51,6 @@ func NewCryptionWriter(stream cipher.Stream, writer io.Writer) *CryptionWriter {
// Write writes the give blocks to underlying writer. The length of the blocks // Write writes the give blocks to underlying writer. The length of the blocks
// must be a multiply of BlockSize() // must be a multiply of BlockSize()
func (writer CryptionWriter) Write(blocks []byte) (int, error) { func (writer CryptionWriter) Write(blocks []byte) (int, error) {
log.Debug("CryptionWriter writing %d bytes", len(blocks))
writer.stream.XORKeyStream(blocks, blocks) writer.stream.XORKeyStream(blocks, blocks)
return writer.writer.Write(blocks) return writer.writer.Write(blocks)
} }

View File

@ -3,11 +3,11 @@ package net
import ( import (
"io" "io"
"github.com/v2ray/v2ray-core/log" _ "github.com/v2ray/v2ray-core/log"
) )
const ( const (
bufferSize = 8192 bufferSize = 32 * 1024
) )
func ReaderToChan(stream chan<- []byte, reader io.Reader) error { func ReaderToChan(stream chan<- []byte, reader io.Reader) error {
@ -24,8 +24,7 @@ func ReaderToChan(stream chan<- []byte, reader io.Reader) error {
func ChanToWriter(writer io.Writer, stream <-chan []byte) error { func ChanToWriter(writer io.Writer, stream <-chan []byte) error {
for buffer := range stream { for buffer := range stream {
nBytes, err := writer.Write(buffer) _, err := writer.Write(buffer)
log.Debug("Writing %d bytes with error %v", nBytes, err)
if err != nil { if err != nil {
return err return err
} }