s3:lib/events: make use of tevent_common_loop_timer_delay()
[Samba/gebeck_regimport.git] / lib / replace / socket.c
blob35e975fce740b192bb7c8d2a48ed696b2e741f72
1 /*
2 * Unix SMB/CIFS implementation.
4 * Dummy replacements for socket functions.
6 * Copyright (C) Michael Adam <obnox@samba.org> 2008
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "replace.h"
23 #include "system/network.h"
25 int rep_connect(int sockfd, const struct sockaddr *serv_addr, socklen_t addrlen)
27 errno = ENOSYS;
28 return -1;
31 struct hostent *rep_gethostbyname(const char *name)
33 errno = ENOSYS;
34 return NULL;