Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
com.redhat.resolver/src/org.varlink.resolver.varlink
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
18 lines (15 sloc)
486 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Interface to resolve reverse-domain interface names to | |
# service adresses | |
interface org.varlink.resolver | |
# Get a list of all resolvable interfaces and information | |
# about the resolver's identity. | |
method GetInfo() -> ( | |
vendor: string, | |
product: string, | |
version: string, | |
url: string, | |
interfaces: []string | |
) | |
# Resolve an interface name to a registered varlink service address | |
method Resolve(interface: string) -> (address: string) | |
error InterfaceNotFound (interface: string) |