Skip to content
Snippets Groups Projects
Commit c7806ea2 authored by Claudio Scafuri's avatar Claudio Scafuri :speech_balloon:
Browse files

first import from SVN:...

first import from SVN: http://svn.code.sf.net/p/tango-ds/code/DeviceClasses/BeamDiagnostics/i-tech-brillance, adapted to buildong in Elettra environment
parent 68f7e0e9
No related branches found
No related tags found
No related merge requests found
Showing
with 7748 additions and 0 deletions
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
// $Id: server-conf.h,v 1.1 2006/03/01 10:37:48 miha Exp $
//! \file server-conf.h
//! Default server configuration.
#if !defined(_SERVER_CONF_H)
#define _SERVER_CONF_H
// uncomment to run as a daemon
//#define DAEMON
// default TCP port to listen on
#define SERVER_DEFAULT_PORT 23271
// default multicast group address to send events to
#define SERVER_DEFAULT_MCAST_ADDR "224.0.1.240"
// default multicast TTL (1 = local subnet)
#define SERVER_DEFAULT_MCAST_TTL 1
// PID file pathname.
#define SERVER_PID_FILE "/var/run/liberad.pid"
// max. number of pending connections.
#define SERVER_MAX_BACKLOG 8
// idle connection timeout in seconds
#define SERVER_CONN_TIMEOUT 30
// max. data block size in a message in bytes
#define SERVER_MAX_DATABLOCK (250000*32)
// max. size of data-on-demand cache in samples(!)
#define SERVER_MAX_CACHESIZE 16384
#endif // _SERVER_CONF_H
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
// $Id: socket-io.h,v 1.4 2006/03/01 10:56:41 miha Exp $
//! \file socket-io.h
//! Declares functions to read or write to a socket stream.
#if !defined(_SOCKET_IO_H)
#define _SOCKET_IO_H
/* Read n bytes from a socket stream.
* On success, returns the number of bytes read. On error,
* -1 is returned, and errno is set appropriately.
* Used to read from a stream socket (a TCP socket). See A. Stevens'
* UNIX Network Programming (section 3.9) for more information.
*/
ssize_t readn( int fd, void *vptr, size_t n );
/* Write n bytes to a socket stream.
* On success, returns the number of bytes written. On error,
* -1 is returned, and errno is set appropriately.
* Used to write to a stream socket (a TCP socket). See A. Stevens'
* UNIX Network Programming (section 3.9) for more information.
*/
ssize_t writen( int fd, const void *vptr, size_t n );
#endif // _SOCKET_IO_H
This diff is collapsed.
This diff is collapsed.
libclient.a : i-tech cspi client lib (generic sever access) for x86 - compiled on 02.12.2010 using gcc-4.4.2
File added
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
src/BPM.cpp 0 → 100644
This diff is collapsed.
src/BPM.h 0 → 100644
This diff is collapsed.
src/BPM.i 0 → 100644
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment