0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 06:41:03 +08:00

fixed failed merge with autogen.sh

This commit is contained in:
malosek 2010-01-05 11:05:03 +01:00
commit 472ddf8de2
184 changed files with 216 additions and 194 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
# Copyright (c) 2007 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#
@ -31,10 +31,13 @@ if [ $? -ne 0 ]; then
echo
echo "Cannot create config directory."
echo
exit 1
fi
autoreconf --install --force --verbose -I config
if [ $? -ne 0 ]; then
echo
echo "Could not run autoreconf, check autotools installation."
echo
exit 1
fi

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.
@ -202,7 +202,7 @@ typedef struct
short revents;
} zmq_pollitem_t;
ZMQ_EXPORT int zmq_poll (zmq_pollitem_t *items, int nitems);
ZMQ_EXPORT int zmq_poll (zmq_pollitem_t *items, int nitems, long timeout);
////////////////////////////////////////////////////////////////////////////////
// Helper functions.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.
@ -33,9 +33,9 @@ namespace zmq
typedef zmq_free_fn free_fn;
typedef zmq_pollitem_t pollitem_t;
inline int poll (zmq_pollitem_t *items_, int nitems_)
inline int poll (zmq_pollitem_t *items_, int nitems_, long timeout_ = -1)
{
return zmq_poll (items_, nitems_);
return zmq_poll (items_, nitems_, timeout_);
}
class error_t : public std::exception

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,6 +1,6 @@
#!/bin/sh
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,4 +1,4 @@
.TH zmq_forwarder 1 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_forwarder 1 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_forwarder \- forwards the stream of PUB/SUB messages
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_queue 1 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_queue 1 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_queue \- forwards REQ/REP messages
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_streamer 1 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_streamer 1 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_streamer \- forwards the stream of UPSTREAM/DOWNSTREAM messages
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_bind 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_bind 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_bind \- binds the socket to the specified address
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_close 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_close 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_close \- destroys 0MQ socket
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_connect 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_connect 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_connect \- connect the socket to the specified peer
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_flush 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_flush 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_flush \- flushes pre-sent messages to the socket
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_init 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_init 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_init \- initialises 0MQ context
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_close 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_close 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_close \- destroys 0MQ message
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_copy 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_copy 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_copy \- copies content of a message to another message
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_data 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_data 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_data \- retrieves pointer to the message content
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_init 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_init 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_init \- initialises empty 0MQ message
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_init_data 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_init_data 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_init \- initialises 0MQ message from the given data
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_init_size 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_init_size 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_init \- initialises 0MQ message of a specified size
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_move 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_move 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_move \- moves content of a message to another message
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_msg_size 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_msg_size 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_msg_size \- retrieves size of the message content
.SH SYNOPSIS

View File

@ -1,8 +1,8 @@
.TH zmq_poll 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_poll 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_poll \- polls for events on a set of 0MQ and POSIX sockets
.SH SYNOPSIS
.B int zmq_poll (zmq_pollitem_t *items, int nitems);
.B int zmq_poll (zmq_pollitem_t *items, int nitems, long timeout);
.SH DESCRIPTION
Waits for the events specified by
.IR items
@ -31,7 +31,7 @@ specifies which events to wait for. It's a combination of the values below.
Once the call exits,
.IR revent
will be filled with events that have actually occured on the socket. The field
will contain a combination of the following values.
will contain a combination of the values below.
.IP "\fBZMQ_POLLIN\fP"
poll for incoming messages.
@ -40,6 +40,12 @@ wait while message can be set socket. Poll will return if a message of at least
one byte can be written to the socket. However, there is no guarantee that
arbitrarily large message can be sent.
.IR timeout
argument specifies an upper limit on the time for which
.IR zmq_poll
will block, in microseconds. Specifying a negative value in timeout means
an infinite timeout.
.SH RETURN VALUE
Function returns number of items signaled or -1 in the case of error.
.SH ERRORS

View File

@ -1,4 +1,4 @@
.TH zmq_recv 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_recv 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_recv \- retrieves a message from the socket
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_send 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_send 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_send \- sends a message
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_setsockopt 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_setsockopt 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_setsockopt \- sets a specified option on a 0MQ socket
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_socket 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_socket 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_socket \- creates 0MQ socket
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_strerror 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_strerror 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_strerror \- returns string describing the error number
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_term 3 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_term 3 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
zmq_init \- terminates 0MQ context
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
0MQ \- a lightweight messaging kernel
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_cl 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_cl 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
Common Lisp API for 0MQ lightweight messaging kernel
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_cpp 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_cpp 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
C++ API for 0MQ lightweight messaging kernel
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_inproc 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_inproc 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
In-process (inter-thread) tranport for 0MQ
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_pgm 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_pgm 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
PGM-based tranport for 0MQ
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_python 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_python 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
Python API for 0MQ lightweight messaging kernel
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_ruby 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_ruby 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
Ruby API for 0MQ lightweight messaging kernel
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_tcp 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_tcp 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
TCP-based tranport for 0MQ
.SH SYNOPSIS

View File

@ -1,4 +1,4 @@
.TH zmq_udp 7 "" "(c)2007-2009 FastMQ Inc." "0MQ User Manuals"
.TH zmq_udp 7 "" "(c)2007-2010 iMatix Corporation" "0MQ User Manuals"
.SH NAME
UDP-based tranport for 0MQ
.SH SYNOPSIS

View File

@ -6,7 +6,7 @@ It was downloaded from http://www.zeromq.org/
Upstream Author(s): iMatix Corporation
Copyright:
Copyright (C) 2007-2009 by iMatix Corporation
Copyright (C) 2007-2010 by iMatix Corporation
License:

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
#
# Copyright (c) 2007-2009 FastMQ Inc.
# Copyright (c) 2007-2010 iMatix Corporation
#
# This file is part of 0MQ.
#

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

View File

@ -1,5 +1,5 @@
/*
Copyright (c) 2007-2009 FastMQ Inc.
Copyright (c) 2007-2010 iMatix Corporation
This file is part of 0MQ.

Some files were not shown because too many files have changed in this diff Show More