| 750 | } |
| 751 | |
| 752 | arrow::Result<Location> Location::ForGrpcTls(const std::string& host, const int port) { |
| 753 | std::stringstream uri_string; |
| 754 | uri_string << "grpc+tls://" << host << ':' << port; |
| 755 | return Location::Parse(uri_string.str()); |
| 756 | } |
| 757 | |
| 758 | arrow::Result<Location> Location::ForGrpcUnix(const std::string& path) { |
| 759 | std::stringstream uri_string; |