summaryrefslogtreecommitdiffstats
path: root/ssl/packet_locl.h
diff options
context:
space:
mode:
Diffstat (limited to 'ssl/packet_locl.h')
-rw-r--r--ssl/packet_locl.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/ssl/packet_locl.h b/ssl/packet_locl.h
index 7a72f8e658..d44fdef7e1 100644
--- a/ssl/packet_locl.h
+++ b/ssl/packet_locl.h
@@ -399,17 +399,6 @@ __owur static inline int PACKET_strndup(const PACKET *pkt, char **data)
return (*data != NULL);
}
-/* Move the current reading position back |len| bytes */
-__owur static inline int PACKET_back(PACKET *pkt, size_t len)
-{
- if (len > (size_t)(pkt->curr - pkt->start))
- return 0;
-
- pkt->curr -= len;
-
- return 1;
-}
-
/* Move the current reading position forward |len| bytes */
__owur static inline int PACKET_forward(PACKET *pkt, size_t len)
{