Guile: Fix `x509-certificate-dn-oid' and related functions.
[gnutls.git] / lib / io_debug.h
blob696d43b788f694dd48d5cd7b7a744aa45bf385e1
1 /*
2 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation
4 * Author: Nikos Mavroyanopoulos
6 * This file is part of GNUTLS.
8 * The GNUTLS library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 2.1 of
11 * the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 * USA
25 /* This debug file was contributed by
26 * Paul Sheer <psheer@icon.co.za>. Some changes were made by nmav.
27 * Its purpose is to debug non blocking behaviour of gnutls. The included
28 * send() and recv() functions return EAGAIN errors in random.
32 #ifdef IO_DEBUG
34 #include <gnutls_int.h>
36 #define EDUNNO EAGAIN /* EAGAIN */
38 extern int errno;
39 static int initialized_rand = 0;
41 #define INITIALIZE_RAND if (initialized_rand==0) {\
42 srand(time(0)); \
43 initialized_rand = 1; \
45 static int
46 recv_debug (int fd, char *buf, int len, int flags)
48 INITIALIZE_RAND;
50 if (!(rand () % IO_DEBUG))
52 errno = EDUNNO;
53 return -1;
55 if (len > 1)
56 len = 1;
57 return recv (fd, buf, len, flags);
60 #define recv recv_debug
62 static int
63 send_debug (int fd, const char *buf, int len, int flags)
65 INITIALIZE_RAND;
67 if (!(rand () % IO_DEBUG))
69 errno = EDUNNO;
70 return -1;
72 if (len > 10)
73 len = 10;
74 return send (fd, buf, len, flags);
77 #define send send_debug
79 #endif