Browse Source

fix deprecation warning for bytes

Reinier Balt 7 years ago
parent
commit
870afdb4b6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/src/connection/codec.rs

+ 1 - 1
core/src/connection/codec.rs

@@ -45,7 +45,7 @@ impl Encoder for APCodec {
 
         buf.reserve(3 + payload.len());
         buf.put_u8(cmd);
-        buf.put_u16::<BigEndian>(payload.len() as u16);
+        buf.put_u16_be(payload.len() as u16);
         buf.extend_from_slice(&payload);
 
         self.encode_cipher.nonce_u32(self.encode_nonce);