File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ PROJECT_NAME = "SCION-CPP"
4848# could be handy for archiving the generated documentation or if some version
4949# control system is used.
5050
51- PROJECT_NUMBER = "0.0.3 "
51+ PROJECT_NUMBER = "0.0.4 "
5252
5353# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ BUILD_DIR := $(SRC_ROOT)/build
77PKG_DIR := $(SRC_ROOT ) /out
88PYTHONPATH := $(PYTHONPATH ) :$(SRC_ROOT ) /python
99
10- DOCKER_TAG := 0.0.3
10+ DOCKER_TAG := 0.0.4
1111HOST_UID := $(shell id -u) :$(shell id -g)
1212
1313TEST_DATA =$(addsuffix .bin,$(basename $(shell find tests scitra/tests -name '* .py') ) )
Original file line number Diff line number Diff line change 11# Set version numbers
22
3- set (PROJECT_VERSION 0.0.3 )
3+ set (PROJECT_VERSION 0.0.4 )
44
5- set (SCION_CPP_VERSION 0.0.3 )
5+ set (SCION_CPP_VERSION 0.0.4 )
66set (SCION_CPP_SO_VERSION 0)
77
8- set (SCION_C_VERSION 0.0.3 )
8+ set (SCION_C_VERSION 0.0.4 )
99set (SCION_C_SO_VERSION 0)
1010
11- set (INTERPOSER_VERSION 0.0.3 )
11+ set (INTERPOSER_VERSION 0.0.4 )
1212set (INTERPOSER_SO_VERSION 0)
1313
14- set (SCITRA_TUN_VERSION 0.0.3 )
14+ set (SCITRA_TUN_VERSION 0.0.4 )
1515
16- set (SCION2IP_VERSION 0.0.3 )
16+ set (SCION2IP_VERSION 0.0.4 )
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ without requiring dependencies on the host except for Docker and the SCION Daemo
66
77Building the image require the scitra-tun Debian packages in the build context:
88``` bash
9- cp ../../out/scion++-tools_0.0.3 -1_amd64.deb ./scitra-tun
10- cp ../../out/scitra-tun_0.0.3 -1_amd64.deb ./scitra-tun
9+ cp ../../out/scion++-tools_0.0.4 -1_amd64.deb ./scitra-tun
10+ cp ../../out/scitra-tun_0.0.4 -1_amd64.deb ./scitra-tun
1111docker compose build
1212```
1313
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ FROM ubuntu:24.04
55RUN apt-get update && apt-get -y upgrade
66
77# Install deb package but ignore daemon dependency
8- COPY scion++-tools_0.0.3 -1_amd64.deb /
9- COPY scitra-tun_0.0.3 -1_amd64.deb /
10- RUN apt-get install -y /scion++-tools_0.0.3 -1_amd64.deb /scitra-tun_0.0.3 -1_amd64.deb
8+ COPY scion++-tools_0.0.4 -1_amd64.deb /
9+ COPY scitra-tun_0.0.4 -1_amd64.deb /
10+ RUN apt-get install -y /scion++-tools_0.0.4 -1_amd64.deb /scitra-tun_0.0.4 -1_amd64.deb
1111
1212ENTRYPOINT ["scitra-tun" ]
1313CMD ["lo" , "127.0.0.1" ]
Original file line number Diff line number Diff line change 1- % scion-interposer(7) Version 0.0.3 | SCION++ Manual
1+ % scion-interposer(7) Version 0.0.4 | SCION++ Manual
22
33## NAME ##
44
Original file line number Diff line number Diff line change 1- % scitra-policy.json(5) Version 0.0.3 | Scitra Manual
1+ % scitra-policy.json(5) Version 0.0.4 | Scitra Manual
22
33## NAME ##
44
Original file line number Diff line number Diff line change 1- % scitra-tun(8) Version 0.0.3 | Scitra Manual
1+ % scitra-tun(8) Version 0.0.4 | Scitra Manual
22
33## NAME ##
44
Original file line number Diff line number Diff line change 1- % scion2ip(1) Version 0.0.3 | Scitra Manual
1+ % scion2ip(1) Version 0.0.4 | Scitra Manual
22
33## NAME ##
44
Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ void PolicySet::parse(const boost::json::value& data)
511511 auto failover = raw->as_string ();
512512 if (failover == " default" ) {
513513 nextPolicy = POLICY_INDEX_DEFAULT;
514- } if (auto i = policyNames.find (failover); i != policyNames.end ()) {
514+ } else if (auto i = policyNames.find (failover); i != policyNames.end ()) {
515515 nextPolicy = i->second ;
516516 } else {
517517 throw ParserError (std::format (
You can’t perform that action at this time.
0 commit comments