2014-06-18 19:02:52 +02:00
|
|
|
############################################################################
|
|
|
|
# net/pkt/Make.defs
|
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# 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
|
2014-06-18 19:02:52 +02:00
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2014-06-18 19:02:52 +02:00
|
|
|
#
|
2021-02-19 12:45:37 +01:00
|
|
|
# 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.
|
2014-06-18 19:02:52 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Packet socket support
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_NET_PKT),y)
|
2014-06-24 16:03:44 +02:00
|
|
|
|
|
|
|
# Socket layer
|
|
|
|
|
2017-07-12 23:07:32 +02:00
|
|
|
SOCK_CSRCS += pkt_sockif.c
|
2020-12-01 07:55:16 +01:00
|
|
|
SOCK_CSRCS += pkt_sendmsg.c
|
|
|
|
SOCK_CSRCS += pkt_recvmsg.c
|
2014-06-24 16:03:44 +02:00
|
|
|
|
|
|
|
# Transport layer
|
|
|
|
|
2014-06-19 15:32:07 +02:00
|
|
|
NET_CSRCS += pkt_conn.c
|
|
|
|
NET_CSRCS += pkt_input.c
|
|
|
|
NET_CSRCS += pkt_callback.c
|
|
|
|
NET_CSRCS += pkt_poll.c
|
2015-05-29 16:47:21 +02:00
|
|
|
NET_CSRCS += pkt_finddev.c
|
2014-06-18 19:02:52 +02:00
|
|
|
|
|
|
|
# Include packet socket build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path pkt
|
|
|
|
VPATH += :pkt
|
|
|
|
|
|
|
|
endif # CONFIG_NET_PKT
|