{
ZakCgiMain *zakcgimain;
gchar *base_uri;
+ gchar *path;
gchar *sid;
GFile *gfile;
GKeyFile *kfile;
priv->zakcgimain = NULL;
priv->base_uri = NULL;
+ priv->path = NULL;
}
/**
* zak_cgi_session_new:
* @zakcgimain:
* @base_uri:
+ * @path:
*
* Returns: the newly created #ZakCgiSession object.
*/
ZakCgiSession
*zak_cgi_session_new (ZakCgiMain *zakcgimain,
- const gchar *base_uri)
+ const gchar *base_uri,
+ const gchar *path)
{
GHashTable *ht_cookies;
{
priv->base_uri = g_strdup (base_uri);
}
+ if (path != NULL)
+ {
+ priv->path = g_strdup (path);
+ }
ht_cookies = zak_cgi_main_get_cookies (priv->zakcgimain);
priv->sid = g_hash_table_lookup (ht_cookies, "ZAKCGISID");
if (priv->sid != NULL)
{
/* open the file */
- priv->gfile = g_file_new_for_path (g_build_filename (g_get_tmp_dir (), priv->sid, NULL));
+ priv->gfile = g_file_new_for_path (g_build_filename (priv->path != NULL ? priv->path : g_get_tmp_dir (), priv->sid, NULL));
error = NULL;
g_free (tmp);
/* see if file already exists */
- priv->gfile = g_file_new_for_path (g_build_filename (g_get_tmp_dir (), priv->sid, NULL));
+ priv->gfile = g_file_new_for_path (g_build_filename (priv->path != NULL ? priv->path : g_get_tmp_dir (), priv->sid, NULL));
error = NULL;
iostream = g_file_replace_readwrite (priv->gfile, NULL, FALSE, G_FILE_CREATE_PRIVATE, NULL, &error);
if (iostream == NULL
ZakCgiSession *zak_cgi_session_new (ZakCgiMain *zakcgimain,
- const gchar *base_uri);
+ const gchar *base_uri,
+ const gchar *path);
gchar *zak_cgi_session_get_header (ZakCgiSession *session);
gchar *method;
- session = zak_cgi_session_new (NULL, NULL);
+ session = zak_cgi_session_new (NULL, NULL, NULL);
str = g_string_new ("<html>\n"
"<head><title>Session Cookie</title></head>\n"