[BACK]Return to sshbuf.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sshbuf.h between version 1.24 and 1.25

version 1.24, 2022/01/01 05:55:06 version 1.25, 2022/01/22 00:43:43
Line 310 
Line 310 
 int sshbuf_write_file(const char *path, struct sshbuf *buf)  int sshbuf_write_file(const char *path, struct sshbuf *buf)
     __attribute__((__nonnull__ (2)));      __attribute__((__nonnull__ (2)));
   
   /* Read up to maxlen bytes from a fd directly to a buffer */
   int sshbuf_read(int, struct sshbuf *, size_t, size_t *)
       __attribute__((__nonnull__ (2)));
   
 /* Macros for decoding/encoding integers */  /* Macros for decoding/encoding integers */
 #define PEEK_U64(p) \  #define PEEK_U64(p) \
         (((u_int64_t)(((const u_char *)(p))[0]) << 56) | \          (((u_int64_t)(((const u_char *)(p))[0]) << 56) | \

Legend:
Removed from v.1.24  
changed lines
  Added in v.1.25