/usr/include/libmms/mmsio.h is in libmms-dev 0.6.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 107 108 109 110 111 112 113 114 115 116 | /*
* Copyright (C) 2004-2012 the libmms project
*
* This file is part of LibMMS, an MMS protocol handling library.
*
* Libmms is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* Libmms 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 Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA
*/
#ifndef __MMS_IO_H__
#define __MMS_IO_H__
#include <sys/types.h>
#include "mms_config.h"
/* On 64 bit file offset capable systems, libmms' configure script adds
-D_FILE_OFFSET_BITS=64 to the CFLAGS. This causes off_t to be 64 bit,
When an app which includes this header file gets compiled without
-D_FILE_OFFSET_BITS=64, it should still expect / pass 64 bit ints for
off_t, this acomplishes this: */
#if defined LIBMMS_HAVE_64BIT_OFF_T && !defined __MMS_C__
#define mms_off_t int64_t
#else
#define mms_off_t off_t
#endif
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef mms_off_t (*mms_io_write_func)(void *data, int socket, char *buf, mms_off_t num);
typedef mms_off_t (*mms_io_read_func)(void *data, int socket, char *buf, mms_off_t num);
/* select states */
#define MMS_IO_READ_READY 1
#define MMS_IO_WRITE_READY 2
enum
{
MMS_IO_STATUS_READY, /* IO can be safely performed */
MMS_IO_STATUS_ERROR, /* There was IO error */
MMS_IO_STATUS_ABORTED, /* IO command was (somehow)
aborted. This is not error, but invalidates IO for further operations*/
MMS_IO_STATUS_TIMEOUT /* Timeout was exceeded */
};
/*
* Waits for a file descriptor/socket to change status.
*
* users can use this handler to provide their own implementations,
* for example abortable ones
*
* params :
* data whatever parameter may be needed by implementation
* fd file/socket descriptor
* state MMS_IO_READ_READY, MMS_IO_WRITE_READY
* timeout_sec timeout in seconds
*
*
* return value :
* MMS_IO_READY the file descriptor is ready for cmd
* MMS_IO_ERROR an i/o error occured
* MMS_IO_ABORTED command aborted
* MMS_IO_TIMEOUT the file descriptor is not ready after timeout_msec milliseconds
* every other return value is interpreted same as MMS_IO_ABORTED
*/
typedef int (*mms_io_select_func)(void *data, int fd, int state, int timeout_msec);
/*
* open a tcp connection
*
* params :
* stream needed for reporting errors but may be NULL
* host address of target
* port port on target
*
* returns a socket descriptor or -1 if an error occured
*/
typedef int (*mms_io_tcp_connect_func)(void *data, const char *host, int port);
typedef struct
{
mms_io_select_func select;
void *select_data;
mms_io_read_func read;
void *read_data;
mms_io_write_func write;
void *write_data;
mms_io_tcp_connect_func connect;
void *connect_data;
} mms_io_t;
/* set default IO implementation, it will be used in absence of specific IO
parameter. Structure is referenced, not copied, must remain valid for entire
usage period. Passing NULL reverts to default, POSIX based implementation */
void mms_set_default_io_impl(const mms_io_t *io);
const mms_io_t* mms_get_default_io_impl();
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __MMS_IO_H__ */
|