a372a902b3ca1df46d4c16d91bca4c225eefcbe6
[folly.git] / folly / detail / SocketFastOpen.h
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #pragma once
18
19 #include <sys/socket.h>
20 #include <sys/types.h>
21
22 #if !defined(FOLLY_ALLOW_TFO) && defined(TCP_FASTOPEN) && defined(MSG_FASTOPEN)
23 #define FOLLY_ALLOW_TFO 1
24 #endif
25
26 namespace folly {
27 namespace detail {
28
29 #if FOLLY_ALLOW_TFO
30
31 /**
32  * tfo_sendto has the same semantics as sendto, but is used to
33  * send with TFO data.
34  */
35 ssize_t tfo_sendto(
36     int sockfd,
37     const void* buf,
38     size_t len,
39     int flags,
40     const struct sockaddr* dest_addr,
41     socklen_t addlen);
42
43 /**
44  * Enable TFO on a listening socket.
45  */
46 int tfo_enable(int sockfd, size_t max_queue_size);
47 #endif
48 }
49 }