Przeglądaj źródła

reduce memory consumption of mux.Writer

Darien Raymond 8 lat temu
rodzic
commit
948534f480
1 zmienionych plików z 1 dodań i 1 usunięć
  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
 }