diff options
author | Werner Koch <[email protected]> | 2007-10-01 14:48:39 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2007-10-01 14:48:39 +0000 |
commit | 31c19d1d685b75377d9ff6dfbc9138ecbd5600b4 (patch) | |
tree | f6630bee0deef3ff050b3ca7dbb55e4951e34372 /jnlib/w32-afunix.h | |
parent | Support the SETQUALITYBAR command of recent pinentries. (diff) | |
download | gnupg-31c19d1d685b75377d9ff6dfbc9138ecbd5600b4.tar.gz gnupg-31c19d1d685b75377d9ff6dfbc9138ecbd5600b4.zip |
Use Assuan socket wrapper calls.
Made socket servers secure under Windows.
Diffstat (limited to '')
-rw-r--r-- | jnlib/w32-afunix.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jnlib/w32-afunix.h b/jnlib/w32-afunix.h index ebb61d80e..6b8f3f954 100644 --- a/jnlib/w32-afunix.h +++ b/jnlib/w32-afunix.h @@ -39,10 +39,11 @@ struct sockaddr_un char sun_path[108-2-4]; /* Path name. */ }; + int _w32_close (int fd); int _w32_sock_new (int domain, int type, int proto); -int _w32_sock_bind (int sockfd, struct sockaddr *addr, int addrlen); int _w32_sock_connect (int sockfd, struct sockaddr *addr, int addrlen); + #endif /*W32AFUNIX_DEFS_H*/ #endif /*_WIN32*/ |