From a63cf0bd7480a8bec8acda6f169c7b5ba18b4ad0 Mon Sep 17 00:00:00 2001 From: Noah Watkins Date: Sat, 30 Aug 2014 18:03:23 -0700 Subject: [PATCH] lib: updating comments Signed-off-by: Noah Watkins --- conn.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conn.go b/conn.go index 61dcae0..9373f5e 100644 --- a/conn.go +++ b/conn.go @@ -8,6 +8,7 @@ import "C" import "unsafe" import "bytes" +// ClusterStat represents Ceph cluster statistics. type ClusterStat struct { Kb uint64 Kb_used uint64 @@ -15,6 +16,7 @@ type ClusterStat struct { Num_objects uint64 } +// Conn is a connection handle to a Ceph cluster. type Conn struct { cluster C.rados_t }