]> git.proxmox.com Git - ceph.git/blame - ceph/src/include/sock_compat.h
update sources to v12.1.1
[ceph.git] / ceph / src / include / sock_compat.h
CommitLineData
7c673cae
FG
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