mirror of
https://github.com/coredns/coredns.git
synced 2025-09-27 16:41:05 +02: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);
|
|
}
|