mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
netaddress: add constant for max len
This commit is contained in:
parent
8ef62de3f0
commit
6c28c3f139
2 changed files with 11 additions and 0 deletions
|
@ -695,6 +695,7 @@ gst_x_overlay_get_type
|
||||||
<INCLUDE>gst/netbuffer/gstnetbuffer.h</INCLUDE>
|
<INCLUDE>gst/netbuffer/gstnetbuffer.h</INCLUDE>
|
||||||
GstNetBuffer
|
GstNetBuffer
|
||||||
GstNetType
|
GstNetType
|
||||||
|
GST_NETADDRESS_MAX_LEN
|
||||||
GstNetAddress
|
GstNetAddress
|
||||||
|
|
||||||
gst_netbuffer_new
|
gst_netbuffer_new
|
||||||
|
|
|
@ -49,6 +49,16 @@ typedef enum {
|
||||||
GST_NET_TYPE_IP6,
|
GST_NET_TYPE_IP6,
|
||||||
} GstNetType;
|
} GstNetType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GST_NETADDRESS_MAX_LEN:
|
||||||
|
*
|
||||||
|
* The maximum length of a string representation of a GstNetAddress as produced
|
||||||
|
* by gst_netaddress_to_string().
|
||||||
|
*
|
||||||
|
* Since: 0.10.24
|
||||||
|
*/
|
||||||
|
#define GST_NETADDRESS_MAX_LEN 64
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstNetAddress:
|
* GstNetAddress:
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue