test_srcfd.cpp 3.37 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
3

4
    This file is part of libzmq, the ZeroMQ core engine in C++.
5

6 7 8
    libzmq is free software; you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License (LGPL) as published
    by the Free Software Foundation; either version 3 of the License, or
9 10
    (at your option) any later version.

11 12 13 14 15 16 17 18 19 20 21 22 23 24
    As a special exception, the Contributors give you permission to link
    this library with independent modules to produce an executable,
    regardless of the license terms of these independent modules, and to
    copy and distribute the resulting executable under terms of your choice,
    provided that you also meet, for each linked independent module, the
    terms and conditions of the license of that module. An independent
    module is a module which is not derived from or based on this library.
    If you modify this library, you must extend this exception to your
    version of the library.

    libzmq is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
    License for more details.
25 26 27 28 29 30 31 32 33 34

    You should have received a copy of the GNU Lesser General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "testutil.hpp"

#define MSG_SIZE 20

#ifdef _WIN32
35 36
#include <winsock2.h>
#include <ws2tcpip.h>
37 38 39 40 41 42 43 44 45
#else
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#endif

int main (void)
{
    int rc;
46

47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    setup_test_environment();
    //  Create the infrastructure
    void *ctx = zmq_ctx_new ();
    assert (ctx);

    void *rep = zmq_socket (ctx, ZMQ_REP);
    assert (rep);
    void *req = zmq_socket (ctx, ZMQ_REQ);
    assert (req);

    rc = zmq_bind(rep, "tcp://127.0.0.1:5560");
    assert (rc == 0);

    rc = zmq_connect(req, "tcp://127.0.0.1:5560");
    assert (rc == 0);

    char tmp[MSG_SIZE];
64
    memset (tmp, 0, MSG_SIZE);
65 66 67 68 69 70 71 72
    zmq_send(req, tmp, MSG_SIZE, 0);

    zmq_msg_t msg;
    rc = zmq_msg_init(&msg);
    assert (rc == 0);

    zmq_recvmsg(rep, &msg, 0);
    assert(zmq_msg_size(&msg) == MSG_SIZE);
73 74

    // get the messages source file descriptor
75 76 77
    int srcFd = zmq_msg_get(&msg, ZMQ_SRCFD);
    assert(srcFd >= 0);

78 79 80
    rc = zmq_msg_close(&msg);
    assert (rc == 0);

81
    // get the remote endpoint
82
    struct sockaddr_storage ss;
83 84 85
#ifdef ZMQ_HAVE_HPUX
    int addrlen = sizeof ss;
#else
86
    socklen_t addrlen = sizeof ss;
87
#endif
88 89 90 91
    rc = getpeername (srcFd, (struct sockaddr*) &ss, &addrlen);
    assert (rc == 0);

    char host [NI_MAXHOST];
92 93
    rc = getnameinfo ((struct sockaddr*) &ss, addrlen, host, sizeof host,
            NULL, 0, NI_NUMERICHOST);
94 95
    assert (rc == 0);

96
    // assert it is localhost which connected
97 98 99 100 101 102 103
    assert (strcmp(host, "127.0.0.1") == 0);

    rc = zmq_close (rep);
    assert (rc == 0);
    rc = zmq_close (req);
    assert (rc == 0);

104
    // sleep a bit for the socket to be freed
105
    msleep (SETTLE_TIME);
106 107

    // getting name from closed socket will fail
108
    rc = getpeername (srcFd, (struct sockaddr*) &ss, &addrlen);
109 110 111 112
#ifdef ZMQ_HAVE_WINDOWS
    assert (rc == SOCKET_ERROR);
    assert (WSAGetLastError() == WSAENOTSOCK);
#else
113 114
    assert (rc == -1);
    assert (errno == EBADF);
115
#endif
116

117 118 119 120 121 122
    rc = zmq_ctx_term (ctx);
    assert (rc == 0);

    return 0 ;
}