| ############################################################################ |
| # net/tcp/Make.defs |
| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. The |
| # ASF licenses this file to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance with the |
| # License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| # License for the specific language governing permissions and limitations |
| # under the License. |
| # |
| ############################################################################ |
| |
| # TCP/IP source files |
| |
| ifeq ($(CONFIG_NET_TCP),y) |
| ifneq ($(CONFIG_NET_TCP_NO_STACK),y) |
| |
| # Socket layer |
| |
| SOCK_CSRCS += tcp_connect.c tcp_accept.c tcp_recvfrom.c |
| |
| ifeq ($(CONFIG_NET_TCP_WRITE_BUFFERS),y) |
| SOCK_CSRCS += tcp_send_buffered.c |
| else |
| SOCK_CSRCS += tcp_send_unbuffered.c |
| endif |
| |
| ifeq ($(CONFIG_NET_SENDFILE),y) |
| SOCK_CSRCS += tcp_sendfile.c |
| endif |
| |
| ifeq ($(CONFIG_NET_TCP_NOTIFIER),y) |
| SOCK_CSRCS += tcp_notifier.c |
| ifeq ($(CONFIG_NET_TCP_WRITE_BUFFERS),y) |
| SOCK_CSRCS += tcp_txdrain.c |
| endif |
| endif |
| |
| ifeq ($(CONFIG_NET_TCPPROTO_OPTIONS),y) |
| SOCK_CSRCS += tcp_setsockopt.c tcp_getsockopt.c |
| endif |
| |
| # Transport layer |
| |
| NET_CSRCS += tcp_conn.c tcp_seqno.c tcp_devpoll.c tcp_finddev.c tcp_timer.c |
| NET_CSRCS += tcp_send.c tcp_input.c tcp_appsend.c tcp_listen.c tcp_close.c |
| NET_CSRCS += tcp_monitor.c tcp_callback.c tcp_backlog.c tcp_ipselect.c |
| NET_CSRCS += tcp_recvwindow.c tcp_netpoll.c tcp_ioctl.c tcp_shutdown.c |
| |
| # TCP write buffering |
| |
| ifeq ($(CONFIG_NET_TCP_WRITE_BUFFERS),y) |
| NET_CSRCS += tcp_wrbuffer.c |
| endif |
| |
| # TCP congestion control |
| |
| ifeq ($(CONFIG_NET_TCP_CC_NEWRENO),y) |
| NET_CSRCS += tcp_cc.c |
| endif |
| |
| # TCP debug |
| |
| ifeq ($(CONFIG_DEBUG_FEATURES),y) |
| NET_CSRCS += tcp_dump.c |
| endif |
| |
| # Include TCP build support |
| |
| DEPPATH += --dep-path tcp |
| VPATH += :tcp |
| |
| endif # !CONFIG_NET_TCP_NO_STACK |
| endif # CONFIG_NET_TCP |