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

Added connect and connack properties functions for version 5 #293

Closed
wants to merge 35 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
402eedd
Changes in connect and connack
Pooja-Toshniwal Jun 12, 2024
f9a3588
Minor changes
Pooja-Toshniwal Jun 13, 2024
bdef8fe
For loop
Pooja-Toshniwal Jun 13, 2024
ef6e950
Minor changes
Pooja-Toshniwal Jun 14, 2024
92bc1e5
add
Pooja-Toshniwal Jun 15, 2024
df5d948
ahuh
Pooja-Toshniwal Jun 16, 2024
6ca485d
encodedString
Pooja-Toshniwal Jun 16, 2024
247c2bd
working
Pooja-Toshniwal Jun 16, 2024
7617537
V5 unit tests
Jun 17, 2024
19e8da8
v3 error
Jun 17, 2024
a3860d8
testing serialize functions
Jun 17, 2024
e8d6048
Serialize api
Jun 18, 2024
dd04115
Comments and deserialize test
Jun 18, 2024
8890f4d
test
Jun 19, 2024
9404fa8
testing
Jun 19, 2024
897379f
Fixed C90 errors
moninom1 Jun 20, 2024
01e0887
coverage
moninom1 Jun 20, 2024
b9b47e4
test
moninom1 Jun 20, 2024
8a27fd4
njkj
moninom1 Jun 21, 2024
90547d4
100%
Jun 21, 2024
ee0df66
misra
Jun 21, 2024
650fbb4
misra
Jun 21, 2024
8b7a9d7
misra
Jun 21, 2024
30091df
misra
Jun 21, 2024
543ec12
nj
moninom1 Jun 21, 2024
0d4196d
correct propertylength -2
Jun 21, 2024
9c4e3e4
Delete CMakeFiles directory
Pooja-Toshniwal Jun 24, 2024
0682349
Delete cov-out directory
Pooja-Toshniwal Jun 24, 2024
ee61178
MQTTV5 connect and connack
Jun 24, 2024
4a9145e
MQTTV5 connect and connack
Jun 24, 2024
27b82fd
MQTTV5 connect and connack
Jun 24, 2024
f139ce7
MQTTV5 Connect and Connack
Jun 25, 2024
696a73a
Uncrustify: triggered by comment.
actions-user Jun 25, 2024
f206708
Delete lib directory
Pooja-Toshniwal Jun 25, 2024
1a90139
Delete unit-test directory
Pooja-Toshniwal Jun 25, 2024
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
413 changes: 413 additions & 0 deletions CMakeCache.txt

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions CTestTestfile.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# CMake generated Testfile for
# Source directory: /home/ubuntu/coreMQTT/test
# Build directory: /home/ubuntu/coreMQTT
#
# This file includes the relevant testing commands required for
# testing this directory and lists subdirectories to be tested as well.
subdirs("unit-test/MQTT")
subdirs("unit-test/MQTTv5")
109 changes: 109 additions & 0 deletions DartConfiguration.tcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# This file is configured by CMake automatically as DartConfiguration.tcl
# If you choose not to use CMake, this file may be hand configured, by
# filling in the required variables.


# Configuration directories and files
SourceDirectory: /home/ubuntu/coreMQTT/test
BuildDirectory: /home/ubuntu/coreMQTT

# Where to place the cost data store
CostDataFile:

# Site is something like machine.domain, i.e. pragmatic.crd
Site: ip-172-31-80-220

# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++
BuildName: Linux-cc

# Subprojects
LabelsForSubprojects:

# Submission information
SubmitURL: http://
SubmitInactivityTimeout:

# Dashboard start time
NightlyStartTime: 00:00:00 EDT

# Commands for the build/test/submit cycle
ConfigureCommand: "/home/ubuntu/cmake-3.30.0-rc3-linux-x86_64/bin/cmake" "/home/ubuntu/coreMQTT/test"
MakeCommand: /home/ubuntu/cmake-3.30.0-rc3-linux-x86_64/bin/cmake --build . --config "${CTEST_CONFIGURATION_TYPE}"
DefaultCTestConfigurationType: Release

# version control
UpdateVersionOnly:

# CVS options
# Default is "-d -P -A"
CVSCommand:
CVSUpdateOptions:

# Subversion options
SVNCommand:
SVNOptions:
SVNUpdateOptions:

# Git options
GITCommand:
GITInitSubmodules:
GITUpdateOptions:
GITUpdateCustom:

# Perforce options
P4Command:
P4Client:
P4Options:
P4UpdateOptions:
P4UpdateCustom:

# Generic update command
UpdateCommand:
UpdateOptions:
UpdateType:

# Compiler info
Compiler:
CompilerVersion:

# Dynamic analysis (MemCheck)
PurifyCommand:
ValgrindCommand:
ValgrindCommandOptions:
DrMemoryCommand:
DrMemoryCommandOptions:
CudaSanitizerCommand:
CudaSanitizerCommandOptions:
MemoryCheckType:
MemoryCheckSanitizerOptions:
MemoryCheckCommand: MEMORYCHECK_COMMAND-NOTFOUND
MemoryCheckCommandOptions:
MemoryCheckSuppressionFile:

# Coverage
CoverageCommand: /usr/bin/gcov
CoverageExtraFlags: -l

# Testing options
# TimeOut is the amount of time in seconds to wait for processes
# to complete during testing. After TimeOut seconds, the
# process will be summarily terminated.
# Currently set to 25 minutes
TimeOut: 1500

# During parallel testing CTest will not start a new test if doing
# so would cause the system load to exceed this value.
TestLoad:

TLSVerify:
TLSVersion:

UseLaunchers:
CurlOptions:
# warning, if you add new options here that have to do with submit,
# you have to update cmCTestSubmitCommand.cxx

# For CTest submissions that timeout, these options
# specify behavior for retrying the submission
CTestSubmitRetryDelay: 5
CTestSubmitRetryCount: 3
Loading
Loading