diff options
author | Nito Martinez <Nito@Qindel.ES> | 2015-02-13 13:26:27 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2015-02-13 13:26:27 +0100 |
commit | d4d3fe0e6e77a58e68defc5895a589a681d7d092 (patch) | |
tree | 3e8197ea66ca8dc9fbac1275a9c6efaa8f7f6a35 /nxcomp/Control.h | |
parent | fea8fb5aeeeb77ecfd3e98791bd6f77a9782b588 (diff) | |
download | nx-libs-d4d3fe0e6e77a58e68defc5895a589a681d7d092.tar.gz nx-libs-d4d3fe0e6e77a58e68defc5895a589a681d7d092.tar.bz2 nx-libs-d4d3fe0e6e77a58e68defc5895a589a681d7d092.zip |
Allow version 4-digit version comparison/handshake (400_nxcomp-version.full+lite.patch).
Diffstat (limited to 'nxcomp/Control.h')
-rw-r--r-- | nxcomp/Control.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nxcomp/Control.h b/nxcomp/Control.h index c21477544..71f357c4a 100644 --- a/nxcomp/Control.h +++ b/nxcomp/Control.h @@ -299,17 +299,26 @@ class Control // Version number of local and remote proxy. // + /* + * LocalVersionMaintenancePatch, RemoteVersionMaintenancePatch + * CompatVersionMaintenancePatch + * + * currently not used, for future compatibility checks + */ int LocalVersionMajor; int LocalVersionMinor; int LocalVersionPatch; + int LocalVersionMaintenancePatch; int RemoteVersionMajor; int RemoteVersionMinor; int RemoteVersionPatch; + int RemoteVersionMaintenancePatch; int CompatVersionMajor; int CompatVersionMinor; int CompatVersionPatch; + int CompatVersionMaintenancePatch; // // Which unpack methods are implemented in proxy? |