summaryrefslogtreecommitdiffabout
path: root/include
Unidiff
Diffstat (limited to 'include') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/association.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opkele/association.h b/include/opkele/association.h
index 5eb1cc3..ef0df42 100644
--- a/include/opkele/association.h
+++ b/include/opkele/association.h
@@ -58,32 +58,32 @@ namespace opkele {
58 : _server(__server), _handle(__handle), _assoc_type(__assoc_type), 58 : _server(__server), _handle(__handle), _assoc_type(__assoc_type),
59 _secret(__secret), _expires(__expires), _stateless(__stateless) { } 59 _secret(__secret), _expires(__expires), _stateless(__stateless) { }
60 60
61 /** 61 /**
62 * @overload association_t::server() 62 * @overload association_t::server()
63 */ 63 */
64 virtual string server() const { return _server; } 64 virtual string server() const { return _server; }
65 /** 65 /**
66 * @overload association_t::handle() 66 * @overload association_t::handle()
67 */ 67 */
68 virtual string handle() const { return _handle; } 68 virtual string handle() const { return _handle; }
69 /** 69 /**
70 * @overload association_t::assoc_type() 70 * @overload association_t::assoc_type()
71 */ 71 */
72 virtual string assoc_type() const { return _assoc_type; } 72 virtual string assoc_type() const { return _assoc_type; }
73 /** 73 /**
74 * @overload association_t::secret() 74 * @overload association_t::secret()
75 */ 75 */
76 virtual secret_t secret() const { return _secret; } 76 virtual secret_t secret() const { return _secret; }
77 /** 77 /**
78 * @overload association_t::expires_in() 78 * @overload association_t::expires_in()
79 */ 79 */
80 virtual int expires_in() const { return _expires-time(0); } 80 virtual int expires_in() const { return _expires-time(0); }
81 /** 81 /**
82 * @overload associationn_t::stateless() 82 * @overload association_t::stateless()
83 */ 83 */
84 virtual bool stateless() const { return _stateless; } 84 virtual bool stateless() const { return _stateless; }
85 }; 85 };
86 86
87} 87}
88 88
89#endif /* __OPKELE_ASSOCIATION_H */ 89#endif /* __OPKELE_ASSOCIATION_H */