~ubuntu-branches/ubuntu/vivid/libu2f-server/vivid

« back to all changes in this revision

Viewing changes to u2f-server/u2f-server-version.h

  • Committer: Package Import Robot
  • Author(s): Alessio Di Mauro
  • Date: 2015-01-22 22:41:48 UTC
  • Revision ID: package-import@ubuntu.com-20150122224148-wbg8eu2ykxbat244
Tags: upstream-0.0.0
ImportĀ upstreamĀ versionĀ 0.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* Copyright (c) 2014 Yubico AB
 
3
* All rights reserved.
 
4
*
 
5
* Redistribution and use in source and binary forms, with or without
 
6
* modification, are permitted provided that the following conditions are
 
7
* met:
 
8
*
 
9
* * Redistributions of source code must retain the above copyright
 
10
* notice, this list of conditions and the following disclaimer.
 
11
*
 
12
* * Redistributions in binary form must reproduce the above
 
13
* copyright notice, this list of conditions and the following
 
14
* disclaimer in the documentation and/or other materials provided
 
15
* with the distribution.
 
16
*
 
17
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
18
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
19
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
20
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
21
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
22
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
23
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
24
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
25
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
27
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
*/
 
29
 
 
30
#ifndef U2F_SERVER_VERSION_H
 
31
#define U2F_SERVER_VERSION_H
 
32
 
 
33
#ifdef __cplusplus
 
34
extern "C" {
 
35
#endif
 
36
 
 
37
/**
 
38
 * U2FS_VERSION_STRING
 
39
 *
 
40
 * Pre-processor symbol with a string that describe the header file
 
41
 * version number.  Used together with u2fs_check_version() to verify
 
42
 * header file and run-time library consistency.
 
43
 */
 
44
#define U2FS_VERSION_STRING "0.0.0"
 
45
 
 
46
/**
 
47
 * U2FS_VERSION_NUMBER
 
48
 *
 
49
 * Pre-processor symbol with a hexadecimal value describing the header
 
50
 * file version number.  For example, when the header version is 1.2.3
 
51
 * this symbol will have the value 0x01020300.  The last two digits
 
52
 * are only used between public releases, and will otherwise be 00.
 
53
 */
 
54
#define U2FS_VERSION_NUMBER 0x000000
 
55
 
 
56
/**
 
57
 * U2FS_VERSION_MAJOR
 
58
 *
 
59
 * Pre-processor symbol with a decimal value that describe the major
 
60
 * level of the header file version number.  For example, when the
 
61
 * header version is 1.2.3 this symbol will be 1.
 
62
 */
 
63
#define U2FS_VERSION_MAJOR 0
 
64
 
 
65
/**
 
66
 * U2FS_VERSION_MINOR
 
67
 *
 
68
 * Pre-processor symbol with a decimal value that describe the minor
 
69
 * level of the header file version number.  For example, when the
 
70
 * header version is 1.2.3 this symbol will be 2.
 
71
 */
 
72
#define U2FS_VERSION_MINOR 0
 
73
 
 
74
/**
 
75
 * U2FS_VERSION_PATCH
 
76
 *
 
77
 * Pre-processor symbol with a decimal value that describe the patch
 
78
 * level of the header file version number.  For example, when the
 
79
 * header version is 1.2.3 this symbol will be 3.
 
80
 */
 
81
#define U2FS_VERSION_PATCH 0
 
82
 
 
83
  const char *u2fs_check_version(const char *req_version);
 
84
 
 
85
#ifdef __cplusplus
 
86
}
 
87
#endif
 
88
#endif