You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2019/09/10 19:17:16 UTC

[celix] branch develop updated (01956a3 -> 5365314)

This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/celix.git.


    from 01956a3  Feature/pubsub tcp admin fix (#48)
     new 30a0778  Changed unsigned cast to more explicit unsigned int
     new 5365314  Disabled rsa for now. Creating a issue to solve this later

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                              | 4 ++--
 bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_handler.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


[celix] 02/02: Disabled rsa for now. Creating a issue to solve this later

Posted by pn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/celix.git

commit 536531461de11608aff309aaff7d193dc0566a81
Author: Pepijn Noltes <pe...@gmail.com>
AuthorDate: Tue Sep 10 21:16:38 2019 +0200

    Disabled rsa for now. Creating a issue to solve this later
---
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index cfbb67e..24f8b50 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -64,7 +64,7 @@ before_script:
     - cd -
     - mkdir build install
     - export BUILD_OPTIONS=" \
-        -DBUILD_RSA_REMOTE_SERVICE_ADMIN_DFI=ON \
+        -DBUILD_RSA_REMOTE_SERVICE_ADMIN_DFI=OFF \
         -DBUILD_DEPLOYMENT_ADMIN=ON \
         -DBUILD_DEPENDENCY_MANAGER=ON \
         -DBUILD_EXAMPLES=ON -DBUILD_LOG_SERVICE=ON \
@@ -79,7 +79,7 @@ before_script:
         -DBUILD_DEVICE_ACCESS_EXAMPLE=ON \
         -DBUILD_HTTP_ADMIN=ON "
     - export BUILD_OPTIONS_LINUX=" \
-        -DBUILD_RSA_REMOTE_SERVICE_ADMIN_SHM=ON \
+        -DBUILD_RSA_REMOTE_SERVICE_ADMIN_SHM=OFF \
         -DBUILD_PUBSUB=ON \
         -DBUILD_PUBSUB_PSA_ZMQ=ON \
         -DBUILD_PUBSUB_TESTS=ON \


[celix] 01/02: Changed unsigned cast to more explicit unsigned int

Posted by pn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pnoltes pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/celix.git

commit 30a07786d75a79ea27014b7e8b58ac0e393f9981
Author: Pepijn Noltes <pe...@gmail.com>
AuthorDate: Tue Sep 10 21:15:33 2019 +0200

    Changed unsigned cast to more explicit unsigned int
---
 bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_handler.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_handler.c b/bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_handler.c
index 9457163..ef9ad60 100644
--- a/bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_handler.c
+++ b/bundles/pubsub/pubsub_admin_tcp/src/pubsub_tcp_handler.c
@@ -451,7 +451,7 @@ void pubsub_tcpHandler_setUrlInfo(char *url, pubsub_tcpHandler_url_t *url_info)
             url_info->hostname = strtok(strdup(hostname), ":");
             if (port) {
                 port += 1;
-                unsigned int portDigits = (unsigned) atoi(port);
+                unsigned int portDigits = (unsigned int) atoi(port);
                 if (portDigits != 0) url_info->portnr = portDigits;
             }
             free(hostname);