package obus

  1. Overview
  2. Docs
Pure Ocaml implementation of the D-Bus protocol

Install

Dune Dependency

Authors

Maintainers

Sources

1.2.3.tar.gz
sha256=75703f78015e15d03d0fdba1633a155875daf17d854225658429e72a0df06258
md5=3090a796f0af95e16838d81656ac4b97

doc/src/obus.internals/oBus_protocol.ml.html

Source file oBus_protocol.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(*
 * oBus_protocol.ml
 * ----------------
 * Copyright : (c) 2010, Jeremie Dimino <jeremie@dimino.org>
 * Licence   : BSD3
 *
 * This file is a part of obus, an ocaml implementation of D-Bus.
 *)

(* Protocol parameters *)

let max_type_recursion_depth = 32
let max_name_length = 255
let max_array_size = 1 lsl 26
let max_message_size = 1 lsl 27

let bus_name = "org.freedesktop.DBus"
let bus_path = ["org"; "freedesktop"; "DBus"]
let bus_interface = "org.freedesktop.DBus"
OCaml

Innovation. Community. Security.