1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/**
\file apps/irxfer.c
Send and receive files using IRDA.
OpenOBEX test applications and sample code.
Copyright (c) 1999, 2000 Fons Botman, All Rights Reserved.
OpenOBEX is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public
License along with OpenOBEX. If not, see <http://www.gnu.org/>.
*/
/*
Based on irobex_palm3.c
Start without arguments to receive a file.
Start with filename as argument to send a file.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <openobex/obex.h>
#include "obex_put_common.h"
#include "obex_io.h"
#ifdef _WIN32
#include <windows.h>
#define sleep(sec) Sleep(1000*sec)
#endif
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
volatile int finished = FALSE;
obex_t *handle = NULL;
/*
* Function main (argc, argv)
*
* Starts all the fun!
*
*/
int main(int argc, char *argv[])
{
obex_object_t *object;
int ret;
if ((argc < 1) || (argc > 2) ) {
printf ("Usage: %s [name]\n", argv[0]);
return -1;
}
handle = OBEX_Init(OBEX_TRANS_IRDA, obex_event, 0);
obex_protocol_type = OBEX_PROTOCOL_WIN95_IRXFER;
if (argc == 1) {
/* We are server */
printf("Waiting for files\n");
IrOBEX_ServerRegister(handle, "OBEX:IrXfer");
while (!finished) {
OBEX_HandleInput(handle, 1);
}
} else {
/* We are a client */
/* Try to connect to peer */
ret = IrOBEX_TransportConnect(handle, "OBEX:IrXfer");
if (ret < 0) {
printf("Sorry, unable to connect!\n");
exit(ret);
}
object = OBEX_ObjectNew(handle, OBEX_CMD_CONNECT);
ret = do_sync_request(handle, object, 0);
if( (object = build_object_from_file(handle, argv[1], 0)) ) {
ret = do_sync_request(handle, object, 0);
}
else {
perror("PUT failed");
}
object = OBEX_ObjectNew(handle, OBEX_CMD_DISCONNECT);
ret = do_sync_request(handle, object, 0);
printf("PUT successful\n");
sleep(3);
}
return 0;
}
|