mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
gst/librfb/rfbdecoder.*: Don't use gtk-doc comment style for non gtk-doc comments.
Original commit message from CVS: * gst/librfb/rfbdecoder.c: * gst/librfb/rfbdecoder.h: Don't use gtk-doc comment style for non gtk-doc comments. Make one static function static.
This commit is contained in:
parent
6b773560f6
commit
aa6d9fc528
3 changed files with 16 additions and 11 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2008-01-21 Stefan Kost <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* gst/librfb/rfbdecoder.c:
|
||||||
|
* gst/librfb/rfbdecoder.h:
|
||||||
|
Don't use gtk-doc comment style for non gtk-doc comments.
|
||||||
|
Make one static function static.
|
||||||
|
|
||||||
2008-01-21 Wim Taymans <wim.taymans@collabora.co.uk>
|
2008-01-21 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||||
|
|
||||||
Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org>
|
Patch by: Gabriel Bouvigne <bouvigne at mp3-tech dot org>
|
||||||
|
|
|
@ -286,7 +286,7 @@ rfb_decoder_state_wait_for_protocol_version (RfbDecoder * decoder)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* a string describing the reason (where a string is specified as a length followed
|
* a string describing the reason (where a string is specified as a length followed
|
||||||
* by that many ASCII characters)
|
* by that many ASCII characters)
|
||||||
**/
|
**/
|
||||||
|
@ -314,7 +314,7 @@ rfb_decoder_state_wait_for_security (RfbDecoder * decoder)
|
||||||
{
|
{
|
||||||
guint8 *buffer = NULL;
|
guint8 *buffer = NULL;
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* Version 3.3 The server decides the security type and sends a single word
|
* Version 3.3 The server decides the security type and sends a single word
|
||||||
*
|
*
|
||||||
* The security-type may only take the value 0, 1 or 2. A value of 0 means that the
|
* The security-type may only take the value 0, 1 or 2. A value of 0 means that the
|
||||||
|
@ -347,10 +347,10 @@ rfb_decoder_state_wait_for_security (RfbDecoder * decoder)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case SECURITY_VNC:
|
case SECURITY_VNC:
|
||||||
/**
|
/*
|
||||||
* VNC authentication is to be used and protocol data is to be sent unencrypted. The
|
* VNC authentication is to be used and protocol data is to be sent unencrypted. The
|
||||||
* server sends a random 16-byte challenge
|
* server sends a random 16-byte challenge
|
||||||
*/
|
*/
|
||||||
GST_DEBUG ("Security type is VNC Authentication");
|
GST_DEBUG ("Security type is VNC Authentication");
|
||||||
/* VNC Authentication can't be used if the password is not set */
|
/* VNC Authentication can't be used if the password is not set */
|
||||||
if (!decoder->password) {
|
if (!decoder->password) {
|
||||||
|
@ -376,7 +376,7 @@ rfb_decoder_state_wait_for_security (RfbDecoder * decoder)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* The server sends a word to inform the client whether the security handshaking was
|
* The server sends a word to inform the client whether the security handshaking was
|
||||||
* successful.
|
* successful.
|
||||||
*/
|
*/
|
||||||
|
@ -401,7 +401,7 @@ rfb_decoder_state_security_result (RfbDecoder * decoder)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
guint8 *
|
static guint8 *
|
||||||
rfb_decoder_message_set_encodings (GSList * encodings_list)
|
rfb_decoder_message_set_encodings (GSList * encodings_list)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -422,7 +422,7 @@ rfb_decoder_message_set_encodings (GSList * encodings_list)
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/*
|
||||||
* rfb_decoder_state_set_encodings:
|
* rfb_decoder_state_set_encodings:
|
||||||
* @decoder: The rfb context
|
* @decoder: The rfb context
|
||||||
*
|
*
|
||||||
|
|
|
@ -105,8 +105,6 @@ void rfb_decoder_send_key_event (RfbDecoder * decoder,
|
||||||
guint key, gboolean down_flag);
|
guint key, gboolean down_flag);
|
||||||
void rfb_decoder_send_pointer_event (RfbDecoder * decoder,
|
void rfb_decoder_send_pointer_event (RfbDecoder * decoder,
|
||||||
gint button_mask, gint x, gint y);
|
gint button_mask, gint x, gint y);
|
||||||
guint8 *
|
|
||||||
rfb_decoder_message_set_encodings ( GSList *encodings_list);
|
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue