Skip to content

Commit 52b2d66

Browse files
Nimuedaertyawaehlisch
authored andcommitted
Updates the used public rpki-caches for testing environment
Motivation - get pipeline checks running How: - find valid rpki-cache which runs also rtr - edit url in live_tests
1 parent e3f6bf6 commit 52b2d66

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/test_dynamic_groups.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ int main(void)
2424
//create a TCP transport socket
2525
int retval = 0;
2626
struct tr_socket tr_tcp;
27-
char tcp_host[] = "rpki-validator.realmv6.org";
28-
char tcp_port[] = "8283";
27+
char tcp_host[] = "rpki-cache.netd.cs.tu-dresden.de";
28+
char tcp_port[] = "3323";
2929

3030
struct tr_tcp_config tcp_config = {
3131
tcp_host, //IP

tests/test_live_validation.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ int main(void)
5757
/* These variables are not in the global scope
5858
* because it would cause warnings about discarding constness
5959
*/
60-
char RPKI_CACHE_HOST[] = "rpki-validator.realmv6.org";
61-
char RPKI_CACHE_POST[] = "8283";
60+
char RPKI_CACHE_HOST[] = "rpki-cache.netd.cs.tu-dresden.de";
61+
char RPKI_CACHE_PORT[] = "3323";
6262

6363
/* create a TCP transport socket */
6464
struct tr_socket tr_tcp;
65-
struct tr_tcp_config tcp_config = {RPKI_CACHE_HOST, RPKI_CACHE_POST, NULL, NULL, NULL, 0};
65+
struct tr_tcp_config tcp_config = {RPKI_CACHE_HOST, RPKI_CACHE_PORT, NULL, NULL, NULL, 0};
6666
struct rtr_socket rtr_tcp;
6767
struct rtr_mgr_group groups[1];
6868

0 commit comments

Comments
 (0)