]> git.proxmox.com Git - ceph.git/blob - ceph/src/include/sock_compat.h
bump version to 12.0.3-pve3
[ceph.git] / ceph / src / include / sock_compat.h
1 #ifndef CEPH_SOCK_COMPAT_H
2 #define CEPH_SOCK_COMPAT_H
3
4 #include "include/compat.h"
5
6 /*
7 * This optimization may not be available on all platforms (e.g. OSX).
8 * Apparently a similar approach based on TCP_CORK can be used.
9 */
10 #ifndef MSG_MORE
11 # define MSG_MORE 0
12 #endif
13
14 #endif