mirror of https://github.com/subgraph/fw-daemon
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.
Bruce Leidl
6a5a6f08e7
|
8 years ago | |
---|---|---|
.. | ||
introspect | 8 years ago | |
CONTRIBUTING.md | 8 years ago | |
LICENSE | 8 years ago | |
MAINTAINERS | 8 years ago | |
README.markdown | 8 years ago | |
auth.go | 8 years ago | |
auth_external.go | 8 years ago | |
auth_sha1.go | 8 years ago | |
call.go | 8 years ago | |
conn.go | 8 years ago | |
conn_darwin.go | 8 years ago | |
conn_other.go | 8 years ago | |
dbus.go | 8 years ago | |
decoder.go | 8 years ago | |
doc.go | 8 years ago | |
encoder.go | 8 years ago | |
export.go | 8 years ago | |
homedir.go | 8 years ago | |
homedir_dynamic.go | 8 years ago | |
homedir_static.go | 8 years ago | |
message.go | 8 years ago | |
object.go | 8 years ago | |
sig.go | 8 years ago | |
transport_darwin.go | 8 years ago | |
transport_generic.go | 8 years ago | |
transport_tcp.go | 8 years ago | |
transport_unix.go | 8 years ago | |
transport_unixcred_dragonfly.go | 8 years ago | |
transport_unixcred_linux.go | 8 years ago | |
transport_unixcred_openbsd.go | 8 years ago | |
variant.go | 8 years ago | |
variant_lexer.go | 8 years ago | |
variant_parser.go | 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.