diff options
Diffstat (limited to 'winsup/cygwin/include/cygwin')
-rwxr-xr-x | winsup/cygwin/include/cygwin/cygserver_transport_pipes.h | 12 | ||||
-rwxr-xr-x | winsup/cygwin/include/cygwin/cygserver_transport_sockets.h | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/winsup/cygwin/include/cygwin/cygserver_transport_pipes.h b/winsup/cygwin/include/cygwin/cygserver_transport_pipes.h index 1f4a86ca7eb..fe571a77085 100755 --- a/winsup/cygwin/include/cygwin/cygserver_transport_pipes.h +++ b/winsup/cygwin/include/cygwin/cygserver_transport_pipes.h @@ -39,13 +39,13 @@ private: /* for pipe based communications */ void init_security (); //FIXME: allow inited, sd, all_nih_.. to be static members - SECURITY_DESCRIPTOR sd; - SECURITY_ATTRIBUTES sec_none_nih, sec_all_nih; - const char *const pipe_name; - HANDLE pipe; - const bool is_accepted_endpoint; + SECURITY_DESCRIPTOR _sd; + SECURITY_ATTRIBUTES _sec_none_nih, _sec_all_nih; + const char *const _pipe_name; + HANDLE _hPipe; + const bool _is_accepted_endpoint; - transport_layer_pipes (HANDLE new_pipe); + transport_layer_pipes (HANDLE hPipe); }; #endif /* _CYGSERVER_TRANSPORT_PIPES_ */ diff --git a/winsup/cygwin/include/cygwin/cygserver_transport_sockets.h b/winsup/cygwin/include/cygwin/cygserver_transport_sockets.h index 0b646cdc6f6..97d3baa2303 100755 --- a/winsup/cygwin/include/cygwin/cygserver_transport_sockets.h +++ b/winsup/cygwin/include/cygwin/cygserver_transport_sockets.h @@ -31,9 +31,9 @@ public: private: /* for socket based communications */ - int fd; - struct sockaddr sockdetails; - int sdlen; + int _fd; + struct sockaddr _addr; + int _addr_len; transport_layer_sockets (int newfd); }; |