]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
auth: add ClientTicket
authorSage Weil <sage@newdream.net>
Tue, 28 Jul 2009 18:05:14 +0000 (11:05 -0700)
committerSage Weil <sage@newdream.net>
Tue, 28 Jul 2009 18:05:14 +0000 (11:05 -0700)
src/auth/ClientTicket.h [new file with mode: 0644]

diff --git a/src/auth/ClientTicket.h b/src/auth/ClientTicket.h
new file mode 100644 (file)
index 0000000..8f6fce2
--- /dev/null
@@ -0,0 +1,41 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- 
+// vim: ts=8 sw=2 smarttab
+/*
+ * Ceph - scalable distributed file system
+ *
+ * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
+ *
+ * This is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software 
+ * Foundation.  See file COPYING.
+ * 
+ */
+
+#ifndef __CEPH_AUTH_CLIENTTICKET
+#define __CEPH_AUTH_CLIENTTICKET
+
+#include "include/types.h"
+
+struct ClientTicket {
+  entity_addr_t addr;
+  utime_t created, expires;
+  __u32 flags;
+
+  void encode(bufferlist& bl) const {
+    ::encode(addr, bl);
+    ::encode(created, bl);
+    ::encode(expires, bl);
+    ::encode(flags, bl);
+  }
+  void decode(bufferlist::iterator& bl) {
+    ::decode(addr, bl);
+    ::decode(created, bl);
+    ::decode(expires, bl);
+    ::decode(flags, bl);
+  }
+
+};
+WRITE_CLASS_ENCODER(ClientTicket)
+
+#endif