aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/net/socket_options.h
blob: c4e3c76fcabc1ad1eb57eb47b8f740f5bd742dc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace vespalib {

/**
 * Low-level functions used to adjust various socket related
 * options. Return values indicate success/failure.
 **/
struct SocketOptions {
    static bool set_blocking(int fd, bool value);
    static bool set_nodelay(int fd, bool value);
    static bool set_reuse_addr(int fd, bool value);
    static bool set_ipv6_only(int fd, bool value);
    static bool set_keepalive(int fd, bool value);
    static bool set_linger(int fd, bool enable, int value);
};

} // namespace vespalib