Procházet zdrojové kódy

reduce memory consumption of mux.Writer

Darien Raymond před 8 roky
rodič
revize
948534f480
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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
 }