Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move transport_interface.h from portable/ to interface/ #49

Merged
merged 3 commits into from
Oct 28, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ jobs:
path: ssot
- name: Check transport_interface.h
run: |
SSOT_FILE="ssot/source/portable/transport_interface.h"
CURRENT_FILE="current/source/portable/transport_interface.h"
SSOT_FILE="ssot/source/interface/transport_interface.h"
CURRENT_FILE="current/source/interface/transport_interface.h"
diff <(tail -n +3 $SSOT_FILE) <(tail -n +3 $CURRENT_FILE)
if [ "$?" -ne "0" ]; then
echo "transport_interface.h differs from coreMQTT."
Expand Down
2 changes: 1 addition & 1 deletion docs/doxygen/config.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@ WARN_LOGFILE =
INPUT = ./docs/doxygen \
./source \
./source/include \
./source/portable
./source/interface

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down
2 changes: 1 addition & 1 deletion httpFilePaths.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ set( HTTP_SOURCES
# HTTP library public include directories.
set( HTTP_INCLUDE_PUBLIC_DIRS
${CMAKE_CURRENT_LIST_DIR}/source/include
${CMAKE_CURRENT_LIST_DIR}/source/portable
${CMAKE_CURRENT_LIST_DIR}/source/interface
${CMAKE_CURRENT_LIST_DIR}/source/third-party/http_parser )
2 changes: 1 addition & 1 deletion test/cbmc/proofs/Makefile-project-defines
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ PROJECT_NAME = "FreeRTOS coreHTTP"
# Preprocessor include paths -I...
INCLUDES += -I$(SRCDIR)/test/cbmc/include
INCLUDES += -I$(SRCDIR)/source/include
INCLUDES += -I$(SRCDIR)/source/portable
INCLUDES += -I$(SRCDIR)/source/interface
INCLUDES += -I$(SRCDIR)/source
INCLUDES += -I$(SRCDIR)/source/third-party/http_parser

Expand Down