openATV enigma2
openATV is an open source SetTopBox Graphical user interface.
filepush.cpp File Reference
#include "filepush.h"
#include <lib/base/eerror.h>
#include <errno.h>
#include <fcntl.h>
#include <sys/ioctl.h>

Macros

#define copy16(a, i, v)
 
#define copy32(a, i, v)
 
#define _PROTO_RTSP_UDP   1
 
#define _PROTO_RTSP_TCP   2
 

Functions

 DEFINE_REF (eFilePushThread)
 
static void signal_handler (int x)
 
static void ignore_but_report_signals ()
 

Variables

static int errs
 

Macro Definition Documentation

◆ _PROTO_RTSP_TCP

#define _PROTO_RTSP_TCP   2

◆ _PROTO_RTSP_UDP

#define _PROTO_RTSP_UDP   1

◆ copy16

#define copy16 (   a,
  i,
 
)
Value:
{ \
a[i] = ((v) >> 8) & 0xFF; \
a[i + 1] = (v)&0xFF; \
}

◆ copy32

#define copy32 (   a,
  i,
 
)
Value:
{ \
a[i] = ((v) >> 24) & 0xFF; \
a[i + 1] = ((v) >> 16) & 0xFF; \
a[i + 2] = ((v) >> 8) & 0xFF; \
a[i + 3] = (v)&0xFF; \
}

Function Documentation

◆ DEFINE_REF()

DEFINE_REF ( eFilePushThread  )

◆ ignore_but_report_signals()

static void ignore_but_report_signals ( )
static

◆ signal_handler()

static void signal_handler ( int  x)
static

Variable Documentation

◆ errs

int errs
static