Use rclone.wrappedConn by pointer

This shaves a kilobyte off the Linux binary by not generating a
non-pointer interface implementation.
This commit is contained in:
greatroar 2021-08-01 09:11:50 +02:00
parent 5571c3f7fd
commit fa3eed1998
1 changed files with 4 additions and 4 deletions

View File

@ -104,16 +104,16 @@ type wrappedConn struct {
io.Writer
}
func (c wrappedConn) Read(p []byte) (int, error) {
func (c *wrappedConn) Read(p []byte) (int, error) {
return c.Reader.Read(p)
}
func (c wrappedConn) Write(p []byte) (int, error) {
func (c *wrappedConn) Write(p []byte) (int, error) {
return c.Writer.Write(p)
}
func wrapConn(c *StdioConn, lim limiter.Limiter) wrappedConn {
wc := wrappedConn{
func wrapConn(c *StdioConn, lim limiter.Limiter) *wrappedConn {
wc := &wrappedConn{
StdioConn: c,
Reader: c,
Writer: c,