]> git.sesse.net Git - vlc/blob - include/network.h
* ALL: Better announce system
[vlc] / include / network.h
1 /*****************************************************************************
2  * network.h: interface to communicate with network plug-ins
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *          Laurent Aimar <fenrir@via.ecp.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * network_socket_t: structure passed to a network plug-in to define the
27  *                   kind of socket we want
28  *****************************************************************************/
29 struct network_socket_t
30 {
31     unsigned int i_type;
32
33     char * psz_bind_addr;
34     int i_bind_port;
35
36     char * psz_server_addr;
37     int i_server_port;
38
39     int i_ttl;
40
41     /* Return values */
42     int i_handle;
43     size_t i_mtu;
44 };
45
46 /* Socket types */
47 #define NETWORK_UDP 1
48 #define NETWORK_TCP 2
49
50
51 typedef struct
52 {
53     char *psz_protocol;
54     char *psz_host;
55     int  i_port;
56
57     char *psz_path;
58
59     char *psz_option;
60 } vlc_url_t;
61
62 /*****************************************************************************
63  * vlc_UrlParse:
64  *****************************************************************************
65  * option : if != 0 then path is split at this char
66  *
67  * format [protocol://][host[:port]]/path[OPTIONoption]
68  *****************************************************************************/
69 static inline void vlc_UrlParse( vlc_url_t *url, char *psz_url, char option )
70 {
71     char *psz_dup = strdup( psz_url );
72     char *psz_parse = psz_dup;
73     char *p;
74
75     url->psz_protocol = NULL;
76     url->psz_host     = NULL;
77     url->i_port       = 0;
78     url->psz_path     = NULL;
79     url->psz_option   = NULL;
80
81     if( ( p  = strstr( psz_parse, ":/" ) ) )
82     {
83         /* we have a protocol */
84
85         /* skip :// */
86         *p++ = '\0';
87         if( p[0] == '/' && p[1] == '/' )
88         {
89             p += 2;
90         }
91         url->psz_protocol = strdup( psz_dup );
92
93         psz_parse = p;
94     }
95
96     p = strchr( psz_parse, '/' );
97     if( !p || psz_parse < p )
98     {
99         char *p2;
100
101         /* We have a host[:port] */
102         url->psz_host = strdup( psz_parse );
103         if( p )
104         {
105             url->psz_host[p - psz_parse] = '\0';
106         }
107
108         if( *url->psz_host == '[' )
109         {
110             /* Ipv6 address */
111             p2 = strchr( url->psz_host, ']' );
112             if( p2 )
113             {
114                 p2 = strchr( p2, ':' );
115             }
116         }
117         else
118         {
119             p2 = strchr( url->psz_host, ':' );
120         }
121         if( p2 )
122         {
123             *p2++ = '\0';
124             url->i_port = atoi( p2 );
125         }
126     }
127     psz_parse = p;
128
129     /* Now parse psz_path and psz_option */
130     if( psz_parse )
131     {
132         url->psz_path = strdup( psz_parse );
133         if( option != '\0' )
134         {
135             p = strchr( url->psz_path, option );
136             if( p )
137             {
138                 *p++ = '\0';
139                 url->psz_option = strdup( p );
140             }
141         }
142     }
143     free( psz_dup );
144 }
145
146 /*****************************************************************************
147  * vlc_UrlClean:
148  *****************************************************************************
149  *
150  *****************************************************************************/
151 static inline void vlc_UrlClean( vlc_url_t *url )
152 {
153     if( url->psz_protocol ) free( url->psz_protocol );
154     if( url->psz_host )     free( url->psz_host );
155     if( url->psz_path )     free( url->psz_path );
156     if( url->psz_option )   free( url->psz_option );
157
158     url->psz_protocol = NULL;
159     url->psz_host     = NULL;
160     url->i_port       = 0;
161     url->psz_path     = NULL;
162     url->psz_option   = NULL;
163 }
164
165 #define net_OpenTCP(a, b, c) __net_OpenTCP(VLC_OBJECT(a), b, c)
166 VLC_EXPORT( int, __net_OpenTCP, ( vlc_object_t *p_this, char *psz_host, int i_port ) );
167
168 #define net_OpenUDP(a, b, c, d, e ) __net_OpenUDP(VLC_OBJECT(a), b, c, d, e)
169 VLC_EXPORT( int, __net_OpenUDP, ( vlc_object_t *p_this, char *psz_bind, int i_bind, char *psz_server, int i_server ) );
170
171 VLC_EXPORT( void, net_Close, ( int fd ) );
172
173 #define net_Read(a,b,c,d,e) __net_Read(VLC_OBJECT(a),b,c,d,e)
174 VLC_EXPORT( int, __net_Read, ( vlc_object_t *p_this, int fd, uint8_t *p_data, int i_data, vlc_bool_t b_retry ) );
175
176 #define net_ReadNonBlock(a,b,c,d,e) __net_ReadNonBlock(VLC_OBJECT(a),b,c,d,e)
177 VLC_EXPORT( int, __net_ReadNonBlock, ( vlc_object_t *p_this, int fd, uint8_t *p_data, int i_data, mtime_t i_wait ) );
178
179 #define net_Write(a,b,c,d) __net_Write(VLC_OBJECT(a),b,c,d)
180 VLC_EXPORT( int, __net_Write, ( vlc_object_t *p_this, int fd, uint8_t *p_data, int i_data ) );
181
182 #define net_Gets(a,b) __net_Gets(VLC_OBJECT(a),b)
183 VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd ) );
184
185 VLC_EXPORT( int, net_Printf, ( vlc_object_t *p_this, int fd, char *psz_fmt, ... ) );
186