Security API has been added for OMG DDS Security Specification compliance.

This API consists of only header files which are grabbed from spec IDL. The dynamically loaded plugins should implement API functions.

Built-in plugins will be added to the repository later. Third party plugins will also be able to be integrated.

Signed-off-by: Kurtulus Oksuztepe <kurtulus.oksuztepe@adlinktech.com>
This commit is contained in:
Kurtulus Oksuztepe 2019-05-23 16:57:55 +02:00 committed by eboasson
parent 68c21c06e3
commit 98cf8e2ae5
18 changed files with 1954 additions and 2 deletions

View file

@ -12,6 +12,7 @@
#ifndef DDSRT_STRING_H
#define DDSRT_STRING_H
#include <stdbool.h>
#include "dds/export.h"
#include "dds/ddsrt/attributes.h"
#include "dds/ddsrt/retcode.h"
@ -169,6 +170,8 @@ ddsrt_strlcat(
size_t size)
ddsrt_nonnull((1,2));
/**
* @brief Get description for specified system error number.
*

View file

@ -178,3 +178,4 @@ ddsrt_strdup(
return ddsrt_memdup(str, strlen(str) + 1);
}