2 * Copyright (C) 2012 Wim Taymans <wim.taymans at gmail.com>
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.
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.
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., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
22 #ifndef __GST_RTSP_ADDRESS_POOL_H__
23 #define __GST_RTSP_ADDRESS_POOL_H__
27 #define GST_TYPE_RTSP_ADDRESS_POOL (gst_rtsp_address_pool_get_type ())
28 #define GST_IS_RTSP_ADDRESS_POOL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_ADDRESS_POOL))
29 #define GST_IS_RTSP_ADDRESS_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_ADDRESS_POOL))
30 #define GST_RTSP_ADDRESS_POOL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_ADDRESS_POOL, GstRTSPAddressPoolClass))
31 #define GST_RTSP_ADDRESS_POOL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_ADDRESS_POOL, GstRTSPAddressPool))
32 #define GST_RTSP_ADDRESS_POOL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_ADDRESS_POOL, GstRTSPAddressPoolClass))
33 #define GST_RTSP_ADDRESS_POOL_CAST(obj) ((GstRTSPAddressPool*)(obj))
34 #define GST_RTSP_ADDRESS_POOL_CLASS_CAST(klass) ((GstRTSPAddressPoolClass*)(klass))
36 typedef struct _GstRTSPAddress GstRTSPAddress;
37 typedef struct _GstRTSPAddressClass GstRTSPAddressClass;
39 typedef struct _GstRTSPAddressPool GstRTSPAddressPool;
40 typedef struct _GstRTSPAddressPoolClass GstRTSPAddressPoolClass;
41 typedef struct _GstRTSPAddressPoolPrivate GstRTSPAddressPoolPrivate;
43 struct _GstRTSPAddress {
44 GstRTSPAddressPool *pool;
54 GType gst_rtsp_address_get_type (void);
56 GstRTSPAddress * gst_rtsp_address_copy (GstRTSPAddress *addr);
57 void gst_rtsp_address_free (GstRTSPAddress *addr);
60 GST_RTSP_ADDRESS_FLAG_NONE = 0,
61 GST_RTSP_ADDRESS_FLAG_IPV4 = (1 << 0),
62 GST_RTSP_ADDRESS_FLAG_IPV6 = (1 << 1),
63 GST_RTSP_ADDRESS_FLAG_EVEN_PORT = (1 << 2),
64 GST_RTSP_ADDRESS_FLAG_MULTICAST = (1 << 3),
65 GST_RTSP_ADDRESS_FLAG_UNICAST = (1 << 4),
66 } GstRTSPAddressFlags;
69 * GST_RTSP_ADDRESS_POOL_ANY_IPV4:
71 * Used with gst_rtsp_address_pool_add_range_unicast() to bind to all
76 * GST_RTSP_ADDRESS_POOL_ANY_IPV6:
78 * Used with gst_rtsp_address_pool_add_range_unicast() to bind to all
82 #define GST_RTSP_ADDRESS_POOL_ANY_IPV4 "0.0.0.0"
83 #define GST_RTSP_ADDRESS_POOL_ANY_IPV6 "::"
87 * @parent: the parent GObject
89 * An address pool, all member are prive
91 struct _GstRTSPAddressPool {
94 GstRTSPAddressPoolPrivate *priv;
97 struct _GstRTSPAddressPoolClass {
98 GObjectClass parent_class;
101 GType gst_rtsp_address_pool_get_type (void);
103 /* create a new address pool */
104 GstRTSPAddressPool * gst_rtsp_address_pool_new (void);
106 void gst_rtsp_address_pool_clear (GstRTSPAddressPool * pool);
107 void gst_rtsp_address_pool_dump (GstRTSPAddressPool * pool);
109 gboolean gst_rtsp_address_pool_add_range (GstRTSPAddressPool * pool,
110 const gchar *min_address,
111 const gchar *max_address,
116 gboolean gst_rtsp_address_pool_add_range_unicast (GstRTSPAddressPool * pool,
117 const gchar *min_address,
118 const gchar *max_address,
122 GstRTSPAddress * gst_rtsp_address_pool_acquire_address (GstRTSPAddressPool * pool,
123 GstRTSPAddressFlags flags,
126 GstRTSPAddress * gst_rtsp_address_pool_reserve_address (GstRTSPAddressPool * pool,
127 const gchar *address,
132 gboolean gst_rtsp_address_pool_has_unicast_addresses (GstRTSPAddressPool * pool);
136 #endif /* __GST_RTSP_ADDRESS_POOL_H__ */