Lines Matching full:is
16 software distributed under the License is distributed on an
17 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
34 Thrift is divided into two libraries.
45 /usr/local/lib by default. Make sure this is in your LDPATH.
47 On Linux, the best way to do this is to ensure that /usr/local/lib is in
57 C++11 is required at a minimum. C++03/C++98 are not supported after version 0.12.0.
59 Boost is required to run the C++ unit tests. It is not necessary to link against
112 The thrift port in vcpkg is kept up to date by Microsoft team members
113 and community contributors. The Apache Thrift project is *not* responsible
114 for the vcpkg port. Therefore, if the version is out of date, please
122 is currently Windows-only. Named pipe transport for *NIX has not been
155 is given the chance to decide whether or not to continue the conversation
156 with the remote. Application is queried through the above three "verify"
164 First, (a) is called with the remote IP. It is called once at the beginning.
165 "sa" is the IP address of the remote peer.
167 Then, the certificate of remote peer is loaded. SubjectAltName extensions
169 subjectAltName field is extracted, (b) is called. When an IP subjectAltName
170 field is extracted, (c) is called.
172 The "host" in (b) is the value from TSocket::getHost() if this is a client
173 side socket, or TSocket::getPeerHost() if this is a server side socket. The
174 reason is client side socket initiates the connection. TSocket::getHost()
175 is the remote host name. On server side, the remote host name is unknown
181 be checked. It is sent to application through (c), where "sa" is the remote
182 IP address. "data" is the IP address extracted from subjectAltName IP
183 extension, and "size" is the length of the extension data.
189 ignored and the verification process would move on till the last item is
190 examined. At that point, if there's still no decision, the connection is
199 is not ignored. This happens when they receive a connection reset by remote
213 one of the followings is included in "keys/server.crt",
224 If "-h <host>" is used to run client, the above "localhost" in the above
230 OpenSSL's RAND_poll() when OpenSSL library is first initialized.
232 The PRNG seed is key to the application security. This method should be
252 language level. As a consequence, boost is no longer required as a runtime
253 library depenedency, but is is still required to build the runtime library
268 libraries now. This is CMake standard behavior.
293 up too early. If the static boolean is set to disable openssl initialization and
294 cleanup and leave it up to the consuming application, this requirement is not needed.