OpenVPN 3 Core Library
Loading...
Searching...
No Matches
olong.hpp
Go to the documentation of this file.
1
// OpenVPN -- An application to securely tunnel IP networks
2
// over a single port, with support for SSL/TLS-based
3
// session authentication and key exchange,
4
// packet encryption, packet authentication, and
5
// packet compression.
6
//
7
// Copyright (C) 2012- OpenVPN Inc.
8
//
9
// SPDX-License-Identifier: MPL-2.0 OR AGPL-3.0-only WITH openvpn3-openssl-exception
10
//
11
12
#ifndef OPENVPN_COMMON_OLONG_H
13
#define OPENVPN_COMMON_OLONG_H
14
15
// opportunistic long -- 32 bits on 32-bit machines, and 64 bits
16
// on 64-bit machines.
17
18
namespace
openvpn
{
19
#if defined(_MSC_VER) && (defined(_M_X64) || defined(_M_ARM64))
20
typedef
long
long
olong
;
21
typedef
unsigned
long
long
oulong
;
22
#else
23
typedef
long
olong
;
24
typedef
unsigned
long
oulong
;
25
#endif
26
}
// namespace openvpn
27
28
#endif
openvpn
Support deferred server-side state creation when client connects.
Definition
ovpncli.cpp:95
openvpn::oulong
unsigned long oulong
Definition
olong.hpp:24
openvpn::olong
long olong
Definition
olong.hpp:23
openvpn
common
olong.hpp
Generated by
1.9.8