mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 02:03:20 -04:00 
			
		
		
		
	* WIP: Client-side of gRPC proxy * Add tests * gofmt * Implement OnShutdown; add a little logging * Update for context in Exchange change * go fmt * Update README * Review comments * Compiling is good * More README improvements
		
			
				
	
	
		
			13 lines
		
	
	
		
			174 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			174 B
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| 
 | |
| package coredns.dns;
 | |
| option go_package = "pb";
 | |
| 
 | |
| message DnsPacket {
 | |
| 	bytes msg = 1;
 | |
| }
 | |
| 
 | |
| service DnsService {
 | |
| 	rpc Query (DnsPacket) returns (DnsPacket);
 | |
| }
 |