~oah-dev/oah/gst-plugins-bad

« back to all changes in this revision

Viewing changes to gst/dccp/gstdccpserversink.h

  • Committer: Haakon Sporsheim
  • Date: 2009-03-12 13:52:03 UTC
  • Revision ID: haakon.sporsheim@tandberg.com-20090312135203-i5k294hgkushb0mt
Initial import of git repository: git://anongit.freedesktop.org/gstreamer/gst-plugins-bad (tag: RELEASE-0_10_10)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 * Copyright (C) <2007> Leandro Melo de Sales <leandroal@gmail.com>
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __GST_DCCP_SERVER_SINK_H__
 
21
#define __GST_DCCP_SERVER_SINK_H__
 
22
 
 
23
#include <gst/gst.h>
 
24
#include <gst/base/gstbasesink.h>
 
25
#include <gst/base/gstadapter.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#include <netdb.h>                        /* sockaddr_in */
 
30
#include <sys/types.h>
 
31
#include <sys/socket.h>
 
32
#include <netinet/in.h>                   /* sockaddr_in */
 
33
#include <unistd.h>
 
34
#include <pthread.h>
 
35
 
 
36
#define GST_TYPE_DCCP_SERVER_SINK \
 
37
  (gst_dccp_server_sink_get_type())
 
38
#define GST_DCCP_SERVER_SINK(obj) \
 
39
  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DCCP_SERVER_SINK,GstDCCPServerSink))
 
40
#define GST_DCCP_SERVER_SINK_CLASS(klass) \
 
41
  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DCCP_SERVER_SINK,GstDCCPServerSinkClass))
 
42
#define GST_IS_DCCP_SERVER_SINK(obj) \
 
43
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DCCP_SERVER_SINK))
 
44
#define GST_IS_DCCP_SERVER_SINK_CLASS(klass) \
 
45
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DCCP_SERVER_SINK))
 
46
 
 
47
typedef struct _GstDCCPServerSink GstDCCPServerSink;
 
48
typedef struct _GstDCCPServerSinkClass GstDCCPServerSinkClass;
 
49
 
 
50
typedef struct _Client Client;
 
51
 
 
52
struct _Client
 
53
{
 
54
  GstDCCPServerSink *server;
 
55
  GstBuffer * buf;
 
56
  int socket;
 
57
  int pksize;
 
58
  GstFlowReturn flow_status;
 
59
};
 
60
 
 
61
struct _GstDCCPServerSink
 
62
{
 
63
  GstBaseSink element;
 
64
 
 
65
  /* server information */
 
66
  int port;
 
67
  struct sockaddr_in server_sin;
 
68
 
 
69
  /* socket */
 
70
  int sock_fd;
 
71
 
 
72
  /* multiple clients */
 
73
  GList *clients;
 
74
 
 
75
  /* properties */
 
76
  int client_sock_fd;
 
77
  uint8_t ccid;
 
78
  gboolean wait_connections;
 
79
  gboolean closed;
 
80
};
 
81
 
 
82
struct _GstDCCPServerSinkClass
 
83
{
 
84
  GstBaseSinkClass parent_class;
 
85
 
 
86
  /* signals */
 
87
  void (*connected) (GstElement *sink, gint fd);
 
88
};
 
89
 
 
90
GType gst_dccp_server_sink_get_type (void);
 
91
 
 
92
G_END_DECLS
 
93
 
 
94
#endif /* __GST_DCCP_SERVER_SINK_H__ */