OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 hints.ai_family = AF_INET; | 663 hints.ai_family = AF_INET; |
664 hints.ai_socktype = SOCK_STREAM; | 664 hints.ai_socktype = SOCK_STREAM; |
665 hints.ai_protocol = IPPROTO_TCP; | 665 hints.ai_protocol = IPPROTO_TCP; |
666 int status = getaddrinfo(host, port, &hints, &result); | 666 int status = getaddrinfo(host, port, &hints, &result); |
667 if (status != 0) { | 667 if (status != 0) { |
668 return false; | 668 return false; |
669 } | 669 } |
670 | 670 |
671 // Connect. | 671 // Connect. |
672 status = connect(socket_, result->ai_addr, result->ai_addrlen); | 672 status = connect(socket_, result->ai_addr, result->ai_addrlen); |
| 673 freeaddrinfo(result); |
673 return status == 0; | 674 return status == 0; |
674 } | 675 } |
675 | 676 |
676 | 677 |
677 int MacOSSocket::Send(const char* data, int len) const { | 678 int MacOSSocket::Send(const char* data, int len) const { |
678 int status = send(socket_, data, len, 0); | 679 int status = send(socket_, data, len, 0); |
679 return status; | 680 return status; |
680 } | 681 } |
681 | 682 |
682 | 683 |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 } | 816 } |
816 | 817 |
817 // This sampler is no longer the active sampler. | 818 // This sampler is no longer the active sampler. |
818 active_sampler_ = NULL; | 819 active_sampler_ = NULL; |
819 active_ = false; | 820 active_ = false; |
820 } | 821 } |
821 | 822 |
822 #endif // ENABLE_LOGGING_AND_PROFILING | 823 #endif // ENABLE_LOGGING_AND_PROFILING |
823 | 824 |
824 } } // namespace v8::internal | 825 } } // namespace v8::internal |
OLD | NEW |