|  | @@ -41,7 +41,7 @@
 | 
	
		
			
				|  |  |  #include <grpc++/client_context.h>
 | 
	
		
			
				|  |  |  #include <grpc++/completion_queue.h>
 | 
	
		
			
				|  |  |  #include <grpc++/create_channel.h>
 | 
	
		
			
				|  |  | -#include <grpc++/credentials.h>
 | 
	
		
			
				|  |  | +#include <grpc++/security/credentials.h>
 | 
	
		
			
				|  |  |  #include "helloworld.grpc.pb.h"
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  using grpc::Channel;
 | 
	
	
		
			
				|  | @@ -89,7 +89,7 @@ class GreeterClient {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  int main(int argc, char** argv) {
 | 
	
		
			
				|  |  |    GreeterClient greeter(grpc::CreateChannel(
 | 
	
		
			
				|  |  | -      "localhost:50051", grpc::InsecureCredentials(), ChannelArguments()));
 | 
	
		
			
				|  |  | +      "localhost:50051", grpc::InsecureCredentials()));
 | 
	
		
			
				|  |  |    std::string user("world");
 | 
	
		
			
				|  |  |    std::string reply = greeter.SayHello(user);
 | 
	
		
			
				|  |  |    std::cout << "Greeter received: " << reply << std::endl;
 |