You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
582 B
16 lines
582 B
#include "api/cds.pb.h" |
|
#include "api/eds.pb.h" |
|
#include "api/hds.pb.h" |
|
#include "api/lds.pb.h" |
|
#include "api/rlds.pb.h" |
|
#include "api/rds.pb.h" |
|
|
|
// Basic C++ build/link validation for the v2 xDS APIs. |
|
int main(int argc, char *argv[]) { |
|
envoy::api::v2::ClusterDiscoveryService::descriptor(); |
|
envoy::api::v2::EndpointDiscoveryService::descriptor(); |
|
envoy::api::v2::HealthDiscoveryService::descriptor(); |
|
envoy::api::v2::ListenerDiscoveryService::descriptor(); |
|
envoy::api::v2::RateLimitDiscoveryService::descriptor(); |
|
envoy::api::v2::RouteDiscoveryService::descriptor(); |
|
}
|
|
|