version.h revision 224638
1290650Shselasky/* $OpenBSD: version.h,v 1.61 2011/02/04 00:44:43 djm Exp $ */
2329200Shselasky/* $FreeBSD: head/crypto/openssh/version.h 224638 2011-08-03 19:14:22Z brooks $ */
3290650Shselasky
4290650Shselasky#ifndef SSH_VERSION
5290650Shselasky
6290650Shselasky#define SSH_VERSION_BASE        "OpenSSH_5.8p2"
7290650Shselasky#define SSH_VERSION_ADDENDUM    "FreeBSD-20110503"
8290650Shselasky#define SSH_VERSION_HPN		"_hpn13v11"
9290650Shselasky#define SSH_VERSION		SSH_VERSION_BASE SSH_VERSION_HPN " " SSH_VERSION_ADDENDUM
10290650Shselasky#define SSH_RELEASE             (ssh_version_get())
11290650Shselasky
12290650Shselaskyconst char *ssh_version_get(void);
13290650Shselaskyvoid ssh_version_set_addendum(const char *);
14290650Shselasky#endif /* SSH_VERSION */
15290650Shselasky