getsockopt.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* getsockopt.c --- wrappers for Windows getsockopt function
  2. Copyright (C) 2008-2011 Free Software Foundation, Inc.
  3. This program is free software: you can redistribute it and/or modify
  4. it under the terms of the GNU Lesser General Public License as published by
  5. the Free Software Foundation; either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. /* Written by Paolo Bonzini */
  14. #include <config.h>
  15. #define WIN32_LEAN_AND_MEAN
  16. /* Get winsock2.h. */
  17. #include <sys/socket.h>
  18. /* Get struct timeval. */
  19. #include <sys/time.h>
  20. /* Get memcpy. */
  21. #include <string.h>
  22. /* Get set_winsock_errno, FD_TO_SOCKET etc. */
  23. #include "w32sock.h"
  24. #undef getsockopt
  25. int
  26. rpl_getsockopt (int fd, int level, int optname, void *optval, socklen_t *optlen)
  27. {
  28. int r;
  29. SOCKET sock = FD_TO_SOCKET (fd);
  30. if (level == SOL_SOCKET && (optname == SO_RCVTIMEO || optname == SO_SNDTIMEO))
  31. {
  32. int milliseconds;
  33. int milliseconds_len = sizeof (int);
  34. struct timeval tv;
  35. size_t n;
  36. r = getsockopt (sock, level, optname, &milliseconds, &milliseconds_len);
  37. tv.tv_sec = milliseconds / 1000;
  38. tv.tv_usec = (milliseconds - 1000 * tv.tv_sec) * 1000;
  39. n = sizeof (struct timeval);
  40. if (n > *optlen)
  41. n = *optlen;
  42. memcpy (optval, &tv, n);
  43. *optlen = n;
  44. }
  45. else
  46. {
  47. r = getsockopt (sock, level, optname, optval, optlen);
  48. }
  49. if (r < 0)
  50. set_winsock_errno ();
  51. return r;
  52. }