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

« back to all changes in this revision

Viewing changes to src/msg.cpp

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2012-10-16 19:49:30 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20121016194930-98r0bi746eoaa4iv
Tags: 3.2.1~rc2+dfsg-1
* New upstream RC release (Closes: #690704)
* Bump Standards-Version to 3.9.4 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
    u.base.flags &= ~flags_;
233
233
}
234
234
 
 
235
bool zmq::msg_t::is_identity () const
 
236
{
 
237
    return (u.base.flags & identity) == identity;
 
238
}
 
239
 
235
240
bool zmq::msg_t::is_delimiter ()
236
241
{
237
242
    return u.base.type == type_delimiter;