From 7e29b557346bd7b41fb98f32b92ac6eadf3278f6 Mon Sep 17 00:00:00 2001 From: Markus Friedl Date: Fri, 12 Oct 2012 17:53:18 +0200 Subject: [PATCH] packet.h: replace include of key.h with forward declaration --- ssh/packet.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ssh/packet.h b/ssh/packet.h index e17c59d..386de12 100644 --- a/ssh/packet.h +++ b/ssh/packet.h @@ -26,7 +26,6 @@ /* XXX fixme */ #include "cipher.h" #include "dispatch.h" -#include "key.h" #include "ssh.h" struct key_entry { @@ -34,8 +33,10 @@ struct key_entry { struct sshkey *key; }; -struct session_state; /* private session data */ struct kex; +struct sshkey; +struct sshbuf; +struct session_state; /* private session data */ struct ssh { /* Session state */