tests/test-objects.h
author Senko Rasic <senko.rasic@collabora.co.uk>
Sun, 30 Nov 2008 10:20:08 +0100
changeset 575 daad23d59b56
parent 131 f67d47083e3a
permissions -rw-r--r--
Don't check for sync dns problems when using asyncns [#33] lm_socket_create() checks for sync DNS failure, but the check is executed even if Loudmouth is using asyncns, in which case Loudmouth crashes. committer: Mikael Hallendal <micke@imendio.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
131
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     2
/*
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     3
 * Copyright (C) 2006 Imendio AB
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     4
 *
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     6
 * modify it under the terms of the GNU Lesser General Public License as
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     7
 * published by the Free Software Foundation; either version 2 of the
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     8
 * License, or (at your option) any later version.
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
     9
 *
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    10
 * This program is distributed in the hope that it will be useful,
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    13
 * Lesser General Public License for more details.
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    14
 *
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    15
 * You should have received a copy of the GNU Lesser General Public
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    16
 * License along with this program; if not, write to the
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    17
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    18
 * Boston, MA 02111-1307, USA.
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    19
 */
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    20
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    21
 #ifndef __TEST_OBJECT_H__
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    22
 #define __TEST_OBJECT_H__
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    23
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    24
#include <check.h>
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    25
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    26
Suite *create_lm_objects_suite (void);
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    27
f67d47083e3a 2006-03-20 Mikael Hallendal <micke@imendio.com>
hallski <hallski>
parents:
diff changeset
    28
 #endif /* __TEST_OBJECT_H__ */