Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ Listening on @00352

### Bridge Mode

Bridge mode allows to tunnel to a remote point via stdin/stdout and call a method.
Running ```varlink bridge``` allows to connect stdio to the host services via ```org.varlink.resolver``` interface resolving.
Bridge mode allows one to tunnel to a remote point via stdin/stdout and call a method.
Running ```varlink bridge``` allows one to connect stdio to the host services via ```org.varlink.resolver``` interface resolving.

```bash
# python3 -m varlink.cli -b "ssh host.example.org varlink bridge" call com.redhat.machine.GetInfo '{}'
Expand Down
4 changes: 2 additions & 2 deletions varlink/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ClientInterfaceHandler:
def __init__(self, interface, namespaced=False):
"""Base class for varlink client, which wraps varlink methods of an interface.

The object allows to talk to a varlink service, which implements the specified interface
The object allows one to talk to a varlink service, which implements the specified interface
transparently by calling the methods. The call blocks until enough messages are received.

For monitor calls with '_more=True' a generator object is returned.
Expand Down Expand Up @@ -161,7 +161,7 @@ class SimpleClientInterfaceHandler(ClientInterfaceHandler):
def __init__(self, interface, file_or_socket, namespaced=False):
"""Creates an object with the varlink methods of an interface installed.

The object allows to talk to a varlink service, which implements the specified interface
The object allows one to talk to a varlink service, which implements the specified interface
transparently by calling the methods. The call blocks until enough messages are received.

For monitor calls with '_more=True' a generator object is returned.
Expand Down
Loading