Skip to content

Commit

Permalink
Move transport_interface.h from portable/ to interface/ (#49)
Browse files Browse the repository at this point in the history
* Move transport_interface.h to interface/ folder.

* Change all paths from portable to interface.
  • Loading branch information
sarenameas authored Oct 28, 2020
1 parent e3342d3 commit f1606df
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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 )
File renamed without changes.
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

0 comments on commit f1606df

Please sign in to comment.