summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2015-01-19 19:52:16 +0000
committerDamien Miller <djm@mindrot.org>2015-01-20 09:13:01 +1100
commit091c302829210c41e7f57c3f094c7b9c054306f0 (patch)
tree800de5dc85b877a85d1f269ae5bb09b0dc3fa7a7 /Makefile.in
parent4e62cc68ce4ba20245d208b252e74e91d3785b74 (diff)
upstream commit
update packet.c & isolate, introduce struct ssh a) switch packet.c to buffer api and isolate per-connection info into struct ssh b) (de)serialization of the state is moved from monitor to packet.c c) the old packet.c API is implemented in opacket.[ch] d) compress.c/h is removed and integrated into packet.c with and ok djm@
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index ebb0c516b..13256c2af 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -78,8 +78,8 @@ LIBSSH_OBJS=${LIBOPENSSH_OBJS} \
78 authfd.o authfile.o bufaux.o bufbn.o buffer.o \ 78 authfd.o authfile.o bufaux.o bufbn.o buffer.o \
79 canohost.o channels.o cipher.o cipher-aes.o cipher-aesctr.o \ 79 canohost.o channels.o cipher.o cipher-aes.o cipher-aesctr.o \
80 cipher-bf1.o cipher-ctr.o cipher-3des1.o cleanup.o \ 80 cipher-bf1.o cipher-ctr.o cipher-3des1.o cleanup.o \
81 compat.o compress.o crc32.o deattack.o fatal.o hostfile.o \ 81 compat.o crc32.o deattack.o fatal.o hostfile.o \
82 log.o match.o md-sha256.o moduli.o nchan.o packet.o \ 82 log.o match.o md-sha256.o moduli.o nchan.o packet.o opacket.o \
83 readpass.o rsa.o ttymodes.o xmalloc.o addrmatch.o \ 83 readpass.o rsa.o ttymodes.o xmalloc.o addrmatch.o \
84 atomicio.o key.o dispatch.o kex.o mac.o uidswap.o uuencode.o misc.o \ 84 atomicio.o key.o dispatch.o kex.o mac.o uidswap.o uuencode.o misc.o \
85 monitor_fdpass.o rijndael.o ssh-dss.o ssh-ecdsa.o ssh-rsa.o dh.o \ 85 monitor_fdpass.o rijndael.o ssh-dss.o ssh-ecdsa.o ssh-rsa.o dh.o \