openssl#5668: corrections after compiling with -qinfo=all:als.
[openssl.git] / ssl / packet_locl.h
index 67b49994f7d27c911a6adfd72c0b74a5e9b37c43..8e553e62b5ac29e731cb65da6d4e83c29fb20670 100644 (file)
@@ -833,6 +833,9 @@ int WPACKET_set_max_size(WPACKET *pkt, size_t maxsize);
 /* Copy |len| bytes of data from |*src| into the WPACKET. */
 int WPACKET_memcpy(WPACKET *pkt, const void *src, size_t len);
 
+/* Set |len| bytes of data to |ch| into the WPACKET. */
+int WPACKET_memset(WPACKET *pkt, int ch, size_t len);
+
 /*
  * Copy |len| bytes of data from |*src| into the WPACKET and prefix with its
  * length (consuming |lenbytes| of data for the length). Don't call this