source: src/connect.h @ b1ae26

Revision b1ae26, 1.1 KB checked in by Tomash Brechko <tomash.brechko@…>, 4 years ago (diff)

Remove dead code. There are no plans to use UDP for now.

  • Property mode set to 100644
Line 
1/*
2  Copyright (C) 2007 Tomash Brechko.  All rights reserved.
3
4  When used to build Perl module:
5
6  This library is free software; you can redistribute it and/or modify
7  it under the same terms as Perl itself, either Perl version 5.8.8
8  or, at your option, any later version of Perl 5 you may have
9  available.
10
11  When used as a standalone library:
12
13  This library is free software; you can redistribute it and/or modify
14  it under the terms of the GNU Lesser General Public License as
15  published by the Free Software Foundation; either version 2.1 of the
16  License, or (at your option) any later version.
17
18  This library is distributed in the hope that it will be useful, but
19  WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21  Lesser General Public License for more details.
22*/
23
24#ifndef CONNECT_H
25#define CONNECT_H 1
26
27#include <stddef.h>
28
29
30extern
31int
32client_connect_inet(const char *host, const char *port, int timeout);
33
34extern
35int
36client_connect_unix(const char *path, size_t path_len);
37
38
39#endif /* ! CONNECT_H */
Note: See TracBrowser for help on using the repository browser.