You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fw-daemon/vendor/github.com/godbus/dbus
Bruce Leidl 6a5a6f08e7
Updated dependency github.com/godbus/dbus
8 years ago
..
introspect Migration from /Godeps to /vendor 8 years ago
CONTRIBUTING.md Migration from /Godeps to /vendor 8 years ago
LICENSE Migration from /Godeps to /vendor 8 years ago
MAINTAINERS Migration from /Godeps to /vendor 8 years ago
README.markdown Migration from /Godeps to /vendor 8 years ago
auth.go Migration from /Godeps to /vendor 8 years ago
auth_external.go Migration from /Godeps to /vendor 8 years ago
auth_sha1.go Migration from /Godeps to /vendor 8 years ago
call.go Migration from /Godeps to /vendor 8 years ago
conn.go Updated dependency github.com/godbus/dbus 8 years ago
conn_darwin.go Migration from /Godeps to /vendor 8 years ago
conn_other.go Updated dependency github.com/godbus/dbus 8 years ago
dbus.go Migration from /Godeps to /vendor 8 years ago
decoder.go Migration from /Godeps to /vendor 8 years ago
doc.go Migration from /Godeps to /vendor 8 years ago
encoder.go Migration from /Godeps to /vendor 8 years ago
export.go Updated dependency github.com/godbus/dbus 8 years ago
homedir.go Migration from /Godeps to /vendor 8 years ago
homedir_dynamic.go Migration from /Godeps to /vendor 8 years ago
homedir_static.go Migration from /Godeps to /vendor 8 years ago
message.go Updated dependency github.com/godbus/dbus 8 years ago
object.go Migration from /Godeps to /vendor 8 years ago
sig.go Migration from /Godeps to /vendor 8 years ago
transport_darwin.go Migration from /Godeps to /vendor 8 years ago
transport_generic.go Migration from /Godeps to /vendor 8 years ago
transport_tcp.go Updated dependency github.com/godbus/dbus 8 years ago
transport_unix.go Migration from /Godeps to /vendor 8 years ago
transport_unixcred_dragonfly.go Migration from /Godeps to /vendor 8 years ago
transport_unixcred_linux.go Migration from /Godeps to /vendor 8 years ago
transport_unixcred_openbsd.go Updated dependency github.com/godbus/dbus 8 years ago
variant.go Migration from /Godeps to /vendor 8 years ago
variant_lexer.go Migration from /Godeps to /vendor 8 years ago
variant_parser.go Migration from /Godeps to /vendor 8 years ago

README.markdown

dbus

dbus is a simple library that implements native Go client bindings for the D-Bus message bus system.

Features

  • Complete native implementation of the D-Bus message protocol
  • Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
  • Subpackages that help with the introspection / property interfaces

Installation

This packages requires Go 1.1. If you installed it and set up your GOPATH, just run:

go get github.com/godbus/dbus

If you want to use the subpackages, you can install them the same way.

Usage

The complete package documentation and some simple examples are available at godoc.org. Also, the _examples directory gives a short overview over the basic usage.

Projects using godbus

  • notify provides desktop notifications over dbus into a library.

Please note that the API is considered unstable for now and may change without further notice.

License

go.dbus is available under the Simplified BSD License; see LICENSE for the full text.

Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.