Quellcode durchsuchen

reduce memory consumption of mux.Writer

Darien Raymond vor 8 Jahren
Ursprung
Commit
948534f480
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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
 }