Remove OS/X warning re: get_string
[melted] / src / humperdink / remote.c
1 /*
2 * remote.c -- Remote dv1394d client demo
3 * Copyright (C) 2002-2003 Ushodaya Enterprises Limited
4 * Author: Charles Yates <charles.yates@pandora.be>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 /* System header files */
22 #include <stdio.h>
23 #include <stdint.h>
24
25 /* dv1394d header files */
26 #include <valerie/valerie_remote.h>
27
28 /* Application header files */
29 #include "client.h"
30 #include "io.h"
31
32 /** Connect to a remote server.
33 */
34
35 static valerie_parser create_parser( )
36 {
37 char server[ 132 ];
38 int port;
39 valerie_parser parser = NULL;
40
41 printf( "Connecting to a Server\n\n" );
42
43 printf( "Server [localhost]: " );
44
45 if ( io_get_string( server, sizeof( server ), "localhost" ) != NULL )
46 {
47 printf( "Port [5250]: " );
48
49 if ( get_int( &port, 5250 ) != NULL )
50 parser = valerie_parser_init_remote( server, port );
51 }
52
53 printf( "\n" );
54
55 return parser;
56 }
57
58 /** Main function.
59 */
60
61 int main( int argc, char **argv )
62 {
63 valerie_parser parser = create_parser( );
64
65 if ( parser != NULL )
66 {
67 dv_demo demo = dv_demo_init( parser );
68 dv_demo_run( demo );
69 dv_demo_close( demo );
70 valerie_parser_close( parser );
71 }
72
73 return 0;
74 }