comparison algo.h @ 1036:deed0571cacc

DROPBEAR_ prefix for include guards to avoid collisions
author Thorsten Horstmann <thorsten.horstmann@web.de>
date Tue, 24 Feb 2015 20:43:01 +0800
parents 47643024fc90
children 2052b53d3034
comparison
equal deleted inserted replaced
1022:4121ca987e6a 1036:deed0571cacc
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE. */ 23 * SOFTWARE. */
24 24
25 #ifndef _ALGO_H_ 25 #ifndef DROPBEAR_ALGO_H_
26 26
27 #define _ALGO_H_ 27 #define DROPBEAR_ALGO_H_
28 28
29 #include "includes.h" 29 #include "includes.h"
30 #include "buffer.h" 30 #include "buffer.h"
31 31
32 #define DROPBEAR_MODE_UNUSED 0 32 #define DROPBEAR_MODE_UNUSED 0
132 DROPBEAR_COMP_NONE, 132 DROPBEAR_COMP_NONE,
133 DROPBEAR_COMP_ZLIB, 133 DROPBEAR_COMP_ZLIB,
134 DROPBEAR_COMP_ZLIB_DELAY, 134 DROPBEAR_COMP_ZLIB_DELAY,
135 }; 135 };
136 136
137 #endif /* _ALGO_H_ */ 137 #endif /* DROPBEAR_ALGO_H_ */