diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2011-03-06 22:56:14 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2011-03-06 22:56:14 +0000 |
commit | 1fee97b01fbbd912fc03db57f8a20c3d6c3fc88d (patch) | |
tree | 6b872900bed0ce399d58f54f1a16e39911c78e4b /sbin/hastctl | |
parent | ea381e691ad3b658f42f1857d4ef448236c006bc (diff) | |
download | src-1fee97b01fbbd912fc03db57f8a20c3d6c3fc88d.tar.gz src-1fee97b01fbbd912fc03db57f8a20c3d6c3fc88d.zip |
Allow to checksum on-the-wire data using either CRC32 or SHA256.
MFC after: 2 weeks
Notes
Notes:
svn path=/head/; revision=219351
Diffstat (limited to 'sbin/hastctl')
-rw-r--r-- | sbin/hastctl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/hastctl/Makefile b/sbin/hastctl/Makefile index 0592e160a584..3137a752412d 100644 --- a/sbin/hastctl/Makefile +++ b/sbin/hastctl/Makefile @@ -6,8 +6,9 @@ PROG= hastctl SRCS= activemap.c +SRCS+= crc32.c SRCS+= ebuf.c -SRCS+= hast_proto.c hastctl.c +SRCS+= hast_checksum.c hast_proto.c hastctl.c SRCS+= metadata.c SRCS+= nv.c SRCS+= parse.y pjdlog.c |