/*
- * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2021 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
return priv->minutes;
}
+/**
+ * zak_cgi_session_get_sid:
+ * @session:
+ *
+ * Returns: the session's sid.
+ */
+const gchar
+*zak_cgi_session_get_sid (ZakCgiSession *session)
+{
+ const gchar *ret;
+
+ ZakCgiSessionPrivate *priv = ZAK_CGI_SESSION_GET_PRIVATE (session);
+
+ if (priv->sid == NULL)
+ {
+ ret = NULL;
+ }
+ else
+ {
+ ret = (const gchar *)priv->sid;
+ }
+
+ return ret;
+}
+
/**
* zak_cgi_session_get_header:
* @session:
/*
- * Copyright (C) 2015-2016 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2021 Andrea Zagli <azagli@libero.it>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
gint zak_cgi_session_get_minutes (ZakCgiSession *session);
+const gchar *zak_cgi_session_get_sid (ZakCgiSession *session);
+
gchar *zak_cgi_session_get_header (ZakCgiSession *session);
void zak_cgi_session_set_value_full (ZakCgiSession *session, const gchar *group, const gchar *name, const gchar *value);