Changeset fcc91c
- Timestamp:
- 05/23/09 16:48:20 (3 years ago)
- Branches:
- master
- Children:
- 6bb9a6
- Parents:
- 442efc
- git-author:
- Tomash Brechko <tomash.brechko@…> (05/23/09 12:46:28)
- git-committer:
- Tomash Brechko <tomash.brechko@…> (05/23/09 16:48:20)
- File:
-
- 1 edited
-
src/connect.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/connect.c
r02370d rfcc91c 1 1 /* 2 Copyright (C) 2007-200 8Tomash Brechko. All rights reserved.2 Copyright (C) 2007-2009 Tomash Brechko. All rights reserved. 3 3 4 4 When used to build Perl module: … … 39 39 40 40 memset(&hint, 0, sizeof(hint)); 41 hint.ai_family = AF_UNSPEC; 42 hint.ai_socktype = SOCK_STREAM; 41 43 #ifdef AI_ADDRCONFIG /* NetBSD 3.1 doesn't have this. */ 42 44 hint.ai_flags = AI_ADDRCONFIG; 43 45 #endif /* AI_ADDRCONFIG */ 44 hint.ai_socktype = SOCK_STREAM;45 46 res = getaddrinfo(host, port, &hint, &addr); 46 47 if (res != 0)
Note: See TracChangeset
for help on using the changeset viewer.
