[$(HOME)/rti_workspace//examples/connext_dds/c/hello_world_dtls/HelloWorld_publisher.c]
#include <stdio.h>
#include <stdlib.h>
#include "ndds/ndds_c.h"
#include "HelloWorld.h"
#include "HelloWorldSupport.h"
#ifdef RTI_STATIC
#include "transport_tls/transport_tls_plugin.h"
#endif
int RTI_SNPRINTF (
char *buffer,
size_t count,
const char *format, ...)
{
va_list ap;
va_start(ap, format);
#ifdef RTI_WIN32
length = _vsnprintf_s(buffer, count, count, format, ap);
#else
length = vsnprintf(buffer, count, format, ap);
#endif
va_end(ap);
}
static int publisher_shutdown(
{
int status = 0;
if (participant != NULL) {
fprintf(stderr, "delete_contained_entities error %d\n", retcode);
status = -1;
}
fprintf(stderr, "delete_participant error %d\n", retcode);
status = -1;
}
}
return status;
}
int publisher_main(int domainId, int sample_count)
{
HelloWorldDataWriter *HelloWorld_writer = NULL;
HelloWorld *instance = NULL;
const char *type_name = NULL;
int count = 0;
fprintf(stderr, "Failed to get default participant qos\n");
publisher_shutdown(participant);
return -1;
}
"dds.transport.load_plugins", "dds.transport.DTLS.dtls1",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.load_plugins\n");
publisher_shutdown(participant);
}
#ifdef RTI_STATIC
"dds.transport.DTLS.dtls1.create_function_ptr",
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.create_function_ptr\n");
publisher_shutdown(participant);
}
#else
"dds.transport.DTLS.dtls1.library",
"nddstransporttls",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.library\n");
publisher_shutdown(participant);
}
"dds.transport.DTLS.dtls1.create_function",
"NDDS_Transport_DTLS_create",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.create_function\n");
publisher_shutdown(participant);
}
#endif
"dds.transport.DTLS.dtls1.tls.verify.ca_file", "cacert.pem",
DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.tls.verify.ca_file\n");
publisher_shutdown(participant);
}
"dds.transport.DTLS.dtls1.tls.identity.certificate_chain_file",
"peer1.pem", DDS_BOOLEAN_FALSE);
fprintf(stderr, "Failed to add property dds.transport.DTLS.dtls1.tls.identity.certificate_chain_file\n");
publisher_shutdown(participant);
}
if (participant == NULL) {
fprintf(stderr, "create_participant error\n");
publisher_shutdown(participant);
return -1;
}
if (publisher == NULL) {
fprintf(stderr, "create_publisher error\n");
publisher_shutdown(participant);
return -1;
}
type_name = HelloWorldTypeSupport_get_type_name();
retcode = HelloWorldTypeSupport_register_type(
participant, type_name);
fprintf(stderr, "register_type error %d\n", retcode);
publisher_shutdown(participant);
return -1;
}
participant, "Example HelloWorld",
if (topic == NULL) {
fprintf(stderr, "create_topic error\n");
publisher_shutdown(participant);
return -1;
}
publisher, topic,
if (writer == NULL) {
fprintf(stderr, "create_datawriter error\n");
publisher_shutdown(participant);
return -1;
}
HelloWorld_writer = HelloWorldDataWriter_narrow(writer);
if (HelloWorld_writer == NULL) {
fprintf(stderr, "DataWriter narrow error\n");
publisher_shutdown(participant);
return -1;
}
if (instance == NULL) {
fprintf(stderr, "HelloWorldTypeSupport_create_data error\n");
publisher_shutdown(participant);
return -1;
}
for (count=0; (sample_count == 0) || (count < sample_count); ++count) {
printf("Writing HelloWorld to DTLS, count %d\n", count);
fflush(stdout);
RTI_SNPRINTF(instance->msg, 128, "Hello Secure World! (%d)", count);
retcode = HelloWorldDataWriter_write(
HelloWorld_writer, instance, &instance_handle);
fprintf(stderr, "write error %d\n", retcode);
}
}
fprintf(stderr, "HelloWorldTypeSupport_delete_data error %d\n", retcode);
}
return publisher_shutdown(participant);
}
#if defined(RTI_WINCE)
int wmain(int argc, wchar_t** argv)
{
int domainId = 0;
int sample_count = 0;
if (argc >= 2) {
domainId = _wtoi(argv[1]);
}
if (argc >= 3) {
sample_count = _wtoi(argv[2]);
}
return publisher_main(domainId, sample_count);
}
#elif !(defined(RTI_VXWORKS) && !defined(__RTP__)) && !defined(RTI_PSOS)
int main(int argc, char *argv[])
{
int domainId = 0;
int sample_count = 0;
if (argc >= 2) {
domainId = atoi(argv[1]);
}
if (argc >= 3) {
sample_count = atoi(argv[2]);
}
return publisher_main(domainId, sample_count);
}
#endif