From e21655632e3fd40b7f6a5cc3c7f3c379d54557c4 Mon Sep 17 00:00:00 2001 From: marha Date: Sat, 30 Aug 2014 13:41:12 +0200 Subject: xserver libxtrans libxcb xcb-proto libX11 mesa git update 30 Aug 2014 xserver commit 3a51418b2db353519a1779cf3cebbcc9afba2520 libxcb commit b0e6c2de09c7474868dd7185674fa113a5c2e0aa libxcb/xcb-proto commit dc0c544fe044ddeb4917bba0c2fed66c70e6db43 libX11 commit 6101b967b641355dd863fd1ce52c6a7d58bcbe68 libxtrans commit 17491de45c352c833442cccf17a9bd65909889db mesa commit 932b0ef1ceecf873213447a8778e5cbe1b3b6be7 --- X11/xtrans/doc/xtrans.xml | 88 +++++++++++++++++++++++------------------------ 1 file changed, 44 insertions(+), 44 deletions(-) (limited to 'X11/xtrans/doc') diff --git a/X11/xtrans/doc/xtrans.xml b/X11/xtrans/doc/xtrans.xml index 59daa3fc0..e3bc1c9a0 100644 --- a/X11/xtrans/doc/xtrans.xml +++ b/X11/xtrans/doc/xtrans.xml @@ -187,35 +187,35 @@ points for a single transport. This record is defined as: typedef struct _Xtransport { - char *TransName; + const char *TransName; int flags; XtransConnInfo (*OpenCOTSClient)( - struct _Xtransport *, /* transport */ - char *, /* protocol */ - char *, /* host */ - char * /* port */ + struct _Xtransport *, /* transport */ + const char *, /* protocol */ + const char *, /* host */ + const char * /* port */ ); XtransConnInfo (*OpenCOTSServer)( - struct _Xtransport *, /* transport */ - char *, /* protocol */ - char *, /* host */ - char * /* port */ + struct _Xtransport *, /* transport */ + const char *, /* protocol */ + const char *, /* host */ + const char * /* port */ ); XtransConnInfo (*OpenCLTSClient)( - struct _Xtransport *, /* transport */ - char *, /* protocol */ - char *, /* host */ - char * /* port */ + struct _Xtransport *, /* transport */ + const char *, /* protocol */ + const char *, /* host */ + const char * /* port */ ); XtransConnInfo (*OpenCLTSServer)( - struct _Xtransport *, /* transport */ - char *, /* protocol */ - char *, /* host */ - char * /* port */ + struct _Xtransport *, /* transport */ + const char *, /* protocol */ + const char *, /* host */ + const char * /* port */ ); int (*SetOption)( @@ -226,8 +226,8 @@ typedef struct _Xtransport { int (*CreateListener)( XtransConnInfo, /* connection */ - char *, /* port */ - int /* flags */ + const char *, /* port */ + int /* flags */ ); int (*ResetListener)( @@ -240,8 +240,8 @@ typedef struct _Xtransport { int (*Connect)( XtransConnInfo, /* connection */ - char *, /* host */ - char * /* port */ + const char *, /* host */ + const char * /* port */ ); int (*BytesReadable)( @@ -393,7 +393,7 @@ errno will be available for debugging purposes. XtransConnInfo TRANS(OpenCOTSClient) - char *address + const char *address @@ -408,7 +408,7 @@ success, or NULL on failure. XtransConnInfo TRANS(OpenCOTSServer) - char *address + const char *address @@ -423,7 +423,7 @@ on failure. XtransConnInfo TRANS(OpenCLTSClient) - char *address + const char *address @@ -438,7 +438,7 @@ function returns an opaque transport connection object on success, or XtransConnInfo TRANS(OpenCLTSServer) - char *address + const char *address @@ -480,7 +480,7 @@ Based on current usage, the complimentary function int TRANS(CreateListener) XtransConnInfo connection - char *port + const char *port int flags @@ -542,7 +542,7 @@ new opaque transport connection object upon success, int TRANS(Connect) XtransConnInfo connection - char *address + const char *address @@ -712,7 +712,7 @@ Returns the file descriptor associated with this transport. int TRANS(MakeAllCOTSServerListeners) - char *port + const char *port int *partial_ret int *count_ret XtransConnInfo **connections_ret @@ -731,7 +731,7 @@ is the list of transports. int TRANS(MakeAllCLTSServerListeners) - char *port + const char *port int *partial_ret int *count_ret XtransConnInfo **connections_ret @@ -826,9 +826,9 @@ the #ifdef SUNSYSV should be handled inside these functions. XtransConnInfo *OpenCOTSClient struct _Xtransport *thistrans - char *protocol - char *host - char *port + const char *protocol + const char *host + const char *port @@ -850,9 +850,9 @@ this function. XtransConnInfo *OpenCOTSServer struct _Xtransport *thistrans - char *protocol - char *host - char *port + const char *protocol + const char *host + const char *port @@ -872,9 +872,9 @@ will open the transport. XtransConnInfo *OpenCLTSClient struct _Xtransport *thistrans - char *protocol - char *host - char *port + const char *protocol + const char *host + const char *port @@ -896,9 +896,9 @@ in by this function. XtransConnInfo *OpenCLTSServer struct _Xtransport *thistrans - char *protocol - char *host - char *port + const char *protocol + const char *host + const char *port @@ -935,7 +935,7 @@ different transport type is added, or a transport dependent option is defined. int CreateListener struct _Xtransport *thistrans - char *port + const char *port int flags @@ -987,8 +987,8 @@ structure describing the new endpoint is returned from this function int Connect struct _Xtransport *thistrans - char *host - char *port + const char *host + const char *port -- cgit v1.2.3