2001-11-07 18:43:05 +01:00
|
|
|
/* assuan-connect.c - Establish a connection (client)
|
2002-07-30 19:38:54 +02:00
|
|
|
* Copyright (C) 2001, 2002 Free Software Foundation, Inc.
|
2001-11-07 18:43:05 +01:00
|
|
|
*
|
2002-07-30 19:38:54 +02:00
|
|
|
* This file is part of Assuan.
|
2001-11-07 18:43:05 +01:00
|
|
|
*
|
2002-07-30 19:38:54 +02:00
|
|
|
* Assuan is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
2001-11-07 18:43:05 +01:00
|
|
|
*
|
2002-07-30 19:38:54 +02:00
|
|
|
* Assuan is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-11-07 18:43:05 +01:00
|
|
|
*
|
2002-07-30 19:38:54 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
2001-11-07 18:43:05 +01:00
|
|
|
*/
|
|
|
|
|
2001-12-06 00:45:01 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2001-11-07 18:43:05 +01:00
|
|
|
#include <config.h>
|
2001-12-06 00:45:01 +01:00
|
|
|
#endif
|
|
|
|
|
2001-11-07 18:43:05 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2001-11-19 13:09:50 +01:00
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
2001-12-06 00:45:01 +01:00
|
|
|
#include <errno.h>
|
2001-11-19 13:09:50 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2001-11-07 18:43:05 +01:00
|
|
|
|
|
|
|
#include "assuan-defs.h"
|
|
|
|
|
2002-01-21 13:03:14 +01:00
|
|
|
/* Disconnect and release the context CTX. */
|
|
|
|
void
|
|
|
|
assuan_disconnect (ASSUAN_CONTEXT ctx)
|
2001-12-06 00:45:01 +01:00
|
|
|
{
|
2002-01-21 13:03:14 +01:00
|
|
|
if (ctx)
|
2001-12-06 00:45:01 +01:00
|
|
|
{
|
2002-01-21 13:03:14 +01:00
|
|
|
assuan_write_line (ctx, "BYE");
|
|
|
|
ctx->finish_handler (ctx);
|
|
|
|
ctx->deinit_handler (ctx);
|
|
|
|
ctx->deinit_handler = NULL;
|
|
|
|
_assuan_release_context (ctx);
|
2001-12-06 00:45:01 +01:00
|
|
|
}
|
2001-11-19 13:09:50 +01:00
|
|
|
}
|
2001-11-24 22:20:22 +01:00
|
|
|
|
|
|
|
pid_t
|
|
|
|
assuan_get_pid (ASSUAN_CONTEXT ctx)
|
|
|
|
{
|
|
|
|
return ctx ? ctx->pid : -1;
|
|
|
|
}
|