blob: 682a21d124917f32d92fc14f2e495532deb8c05e [file] [log] [blame]
Sagar Dhawan3e25ee62020-03-02 16:30:12 -08001/*
2 *
Rob Walkere812e672020-03-31 17:51:57 -07003 * Copyright (c) 2020 Project CHIP Authors
4 * Copyright (c) 2018 Nest Labs, Inc.
Sagar Dhawan3e25ee62020-03-02 16:30:12 -08005 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19/**
20 * @file
Sagar Dhawanbc1ec532020-03-02 16:57:11 -080021 * chip::System project configuration for standalone builds on Linux and OS X.
Sagar Dhawan3e25ee62020-03-02 16:30:12 -080022 *
23 */
24#ifndef SYSTEMPROJECTCONFIG_H
25#define SYSTEMPROJECTCONFIG_H
26
Sagar Dhawanbc1ec532020-03-02 16:57:11 -080027#if CHIP_SYSTEM_CONFIG_USE_SOCKETS
28// Uncomment this for larger buffers (e.g. to support a bigger CHIP_CONFIG_TUNNEL_INTERFACE_MTU).
29//#define CHIP_SYSTEM_CONFIG_PACKETBUFFER_CAPACITY_MAX 9050
Sagar Dhawan3e25ee62020-03-02 16:30:12 -080030#endif
31
32#endif /* SYSTEMPROJECTCONFIG_H */