Sagar Dhawan | 3e25ee6 | 2020-03-02 16:30:12 -0800 | [diff] [blame] | 1 | /* |
| 2 | * |
Rob Walker | e812e67 | 2020-03-31 17:51:57 -0700 | [diff] [blame] | 3 | * Copyright (c) 2020 Project CHIP Authors |
| 4 | * Copyright (c) 2018 Nest Labs, Inc. |
Sagar Dhawan | 3e25ee6 | 2020-03-02 16:30:12 -0800 | [diff] [blame] | 5 | * |
| 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 Dhawan | bc1ec53 | 2020-03-02 16:57:11 -0800 | [diff] [blame] | 21 | * chip::System project configuration for standalone builds on Linux and OS X. |
Sagar Dhawan | 3e25ee6 | 2020-03-02 16:30:12 -0800 | [diff] [blame] | 22 | * |
| 23 | */ |
| 24 | #ifndef SYSTEMPROJECTCONFIG_H |
| 25 | #define SYSTEMPROJECTCONFIG_H |
| 26 | |
Sagar Dhawan | bc1ec53 | 2020-03-02 16:57:11 -0800 | [diff] [blame] | 27 | #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 Dhawan | 3e25ee6 | 2020-03-02 16:30:12 -0800 | [diff] [blame] | 30 | #endif |
| 31 | |
| 32 | #endif /* SYSTEMPROJECTCONFIG_H */ |