1 Commits

5 changed files with 7 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.1) cmake_minimum_required (VERSION 3.1)
project (rpc VERSION 1.2.1) project (rpc VERSION 1.2.0)
set (CMAKE_CXX_STANDARD 11) set (CMAKE_CXX_STANDARD 11)

View File

@@ -11,7 +11,7 @@ RUN \
apt-get update -y -qq && \ apt-get update -y -qq && \
apt install -y -qq \ apt install -y -qq \
git cmake build-essential libssl-dev zlib1g-dev \ git cmake build-essential libssl-dev zlib1g-dev \
curl unzip zip pkg-config ca-certificates curl unzip zip pkg-config
RUN git clone https://github.com/open-amt-cloud-toolkit/rpc.git RUN git clone https://github.com/open-amt-cloud-toolkit/rpc.git
WORKDIR /rpc WORKDIR /rpc
RUN mkdir -p build RUN mkdir -p build

1
Jenkinsfile vendored
View File

@@ -1,5 +1,6 @@
pipeline { pipeline {
agent none agent none
triggers {cron '@daily'}
options { options {
buildDiscarder(logRotator(numToKeepStr: '5', daysToKeepStr: '30')) buildDiscarder(logRotator(numToKeepStr: '5', daysToKeepStr: '30'))
timestamps() timestamps()

View File

@@ -1,5 +0,0 @@
# Security Policy
Intel is committed to rapidly addressing security vulnerabilities affecting our customers and providing clear guidance on the solution, impact, severity and mitigation.
## Reporting a Vulnerability
Please report any security vulnerabilities in this project utilizing the guidelines [here](https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html).

View File

@@ -49,15 +49,15 @@ void usage_show_help()
std::cout << "Examples:" << std::endl; std::cout << "Examples:" << std::endl;
std::cout << " # Activate platform using profile1" << std::endl; std::cout << " # Activate platform using profile1" << std::endl;
std::cout << " " << PROJECT_NAME << \ std::cout << " " << PROJECT_NAME << \
" --url wss://192.168.86.100/activate --cmd \"-t activate --profile profile1\"" << std::endl; " --url wss://localhost:8080 --cmd \"-t activate --profile profile1\"" << std::endl;
std::cout << std::endl; std::cout << std::endl;
std::cout << " # Activate platform using profile1 and override DNS detection" << std::endl; std::cout << " # Activate platform using profile1 and override DNS detection" << std::endl;
std::cout << " " << PROJECT_NAME << \ std::cout << " " << PROJECT_NAME << \
" --url wss://mycloud.com/activate --cmd \"-t activate --profile profile1\" --dns corp.com" << std::endl; " --url wss://localhost:8080 --cmd \"-t activate --profile profile1\" --dns corp.com" << std::endl;
std::cout << std::endl; std::cout << std::endl;
std::cout << " # Deactivate platform and connect through a proxy" << std::endl; std::cout << " # Deactivate platform and connect through a proxy" << std::endl;
std::cout << " " << PROJECT_NAME << \ std::cout << " " << PROJECT_NAME << \
" -u wss://mycloud.com/activate -c \"-t deactivate --password P@ssw0rd\" -p http://proxy.com:1000" << std::endl; " -u wss://localhost:8080 -c \"-t deactivate --password P@ssw0rd\" -p http://proxy.com:1000" << std::endl;
std::cout << std::endl; std::cout << std::endl;
std::cout << " # Show all informational items" << std::endl; std::cout << " # Show all informational items" << std::endl;
std::cout << " " << PROJECT_NAME << " --amtinfo all" << std::endl; std::cout << " " << PROJECT_NAME << " --amtinfo all" << std::endl;