소스 검색

reduce memory consumption of mux.Writer

Darien Raymond 8 년 전
부모
커밋
948534f480
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/proxyman/mux/writer.go

+ 1 - 1
app/proxyman/mux/writer.go

@@ -10,9 +10,9 @@ import (
 )
 
 type Writer struct {
-	id           uint16
 	dest         net.Destination
 	writer       buf.Writer
+	id           uint16
 	followup     bool
 	transferType protocol.TransferType
 }