~ubuntu-branches/ubuntu/saucy/zeromq3/saucy

« back to all changes in this revision

Viewing changes to tests/test_pair_tcp.cpp

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2012-06-04 21:21:09 UTC
  • Revision ID: package-import@ubuntu.com-20120604212109-b7b3m0rn21o8oo2q
Tags: upstream-3.1.0~beta+dfsg
ImportĀ upstreamĀ versionĀ 3.1.0~beta+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2010-2011 250bpm s.r.o.
 
3
    Copyright (c) 2011 iMatix Corporation
 
4
    Copyright (c) 2010-2011 Other contributors as noted in the AUTHORS file
 
5
 
 
6
    This file is part of 0MQ.
 
7
 
 
8
    0MQ is free software; you can redistribute it and/or modify it under
 
9
    the terms of the GNU Lesser General Public License as published by
 
10
    the Free Software Foundation; either version 3 of the License, or
 
11
    (at your option) any later version.
 
12
 
 
13
    0MQ is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
    GNU Lesser General Public License for more details.
 
17
 
 
18
    You should have received a copy of the GNU Lesser General Public License
 
19
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
*/
 
21
 
 
22
#include <assert.h>
 
23
#include <stdio.h>
 
24
#include "testutil.hpp"
 
25
 
 
26
int main (int argc, char *argv [])
 
27
{
 
28
    fprintf (stderr, "test_pair_tcp running...\n");
 
29
 
 
30
    void *ctx = zmq_init (1);
 
31
    assert (ctx);
 
32
 
 
33
    void *sb = zmq_socket (ctx, ZMQ_PAIR);
 
34
    assert (sb);
 
35
    int rc = zmq_bind (sb, "tcp://127.0.0.1:5560");
 
36
    assert (rc == 0);
 
37
 
 
38
    void *sc = zmq_socket (ctx, ZMQ_PAIR);
 
39
    assert (sc);
 
40
    rc = zmq_connect (sc, "tcp://127.0.0.1:5560");
 
41
    assert (rc == 0);
 
42
    
 
43
    bounce (sb, sc);
 
44
 
 
45
    rc = zmq_close (sc);
 
46
    assert (rc == 0);
 
47
 
 
48
    rc = zmq_close (sb);
 
49
    assert (rc == 0);
 
50
 
 
51
    rc = zmq_term (ctx);
 
52
    assert (rc == 0);
 
53
 
 
54
    return 0 ;
 
55
}