<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
Looking at the headers I only see <i>ENET_PACKET_FLAG_RELIABLE</i> and
<i>NET_PACKET_FLAG_UNSEQUENCED</i> for <i>enet_packet_create()</i>.
What am I missing?<br>
<div class="moz-signature"><br>
<hr style="height: 1px;">
<p><span style="font-weight: bold;">Nicholas J Ingrassellino<br>
<a style="text-decoration: none;"
 href="http://www.lifebloodnetworks.com/" target="_blank">LifebloodNetworks.com</a></span>
|| <a style="text-decoration: none;"
 href="mailto:nick@lifebloodnetworks.com">nick@lifebloodnetworks.com</a></p>
<p style="font-size: 75%;">"<span style="font-style: italic;">The idea
that I can be presented with a problem, set out to logically solve it
with the tools at hand, and wind up with a program that could not be
legally used because someone else followed the same logical steps some
years ago and filed for a patent on it is horrifying.</span>"<br>
- <span style="font-weight: bold;">John Carmack</span> on software
patents</p>
</div>
<br>
On 09/27/2010 01:36 PM, Philip Bennefall wrote:
<blockquote cite="mid:013201cb5e6a$8505df50$0d00a8c0@philipe1dfe13a"
 type="cite">
  <meta http-equiv="content-type"
 content="text/html; charset=ISO-8859-1">
  <meta content="MSHTML 6.00.2900.3698" name="GENERATOR">
  <style></style>
  <div><font size="2" face="Arial">My understanding is as follows
(anyone correct me if I'm wrong here):</font></div>
  <div>&nbsp;</div>
  <div><font size="2" face="Arial">1. You'd first get the 100
unreliable packets, exactly in the order you sent them but they are not
all guaranteed to arrive. You may get packets 1, 2, 3, 4, 6, but you
will never get 1, 3, 2, 4.</font></div>
  <div>&nbsp;</div>
  <div><font size="2" face="Arial">2. Then, you'd get the reliable
packet (guaranteed).</font></div>
  <div>&nbsp;</div>
  <div><font size="2" face="Arial">3. After the reliable packet has
been received and acknowledged, you'd start receiving the remainder of
the packets (which is to say the 50 unreliable ones).</font></div>
  <div>&nbsp;</div>
  <div><font size="2" face="Arial">In no event will you get packets in
the wrong order, as this is exactly what ENet is there to avoid. You
can specify a flag to get this behavior though, if you want it for
whatever reason.</font></div>
  <div>&nbsp;</div>
  <div><font size="2" face="Arial">Hope this helps.</font></div>
  <div>&nbsp;</div>
  <div><font size="2" face="Arial">Kind regards,</font></div>
  <div>&nbsp;</div>
  <div><font size="2" face="Arial">Philip Bennefall</font></div>
  <blockquote dir="ltr"
 style="border-left: 2px solid rgb(0, 0, 0); padding-right: 0px; padding-left: 5px; margin-left: 5px; margin-right: 0px;">
    <div
 style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;">-----
Original Message ----- </div>
    <div
 style="background: rgb(228, 228, 228) none repeat scroll 0% 0%; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous; font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"><b>From:</b>
    <a moz-do-not-send="true" title="nick@lifebloodnetworks.com"
 href="mailto:nick@lifebloodnetworks.com">Nicholas J Ingrassellino</a> </div>
    <div
 style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"><b>To:</b>
    <a moz-do-not-send="true" title="enet-discuss@cubik.org"
 href="mailto:enet-discuss@cubik.org">enet-discuss@cubik.org</a> </div>
    <div
 style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"><b>Sent:</b>
Monday, September 27, 2010 7:20 PM</div>
    <div
 style="font-family: arial; font-style: normal; font-variant: normal; font-weight: normal; font-size: 10pt; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none;"><b>Subject:</b>
[ENet-discuss] Mixing Reliable and Unreliable and Packet Ordering</div>
    <div><br>
    </div>
I know I could use different channels to get the result I want but I
was curious about the expected behavior using a single channel.<br>
    <br>
Suppose if I had sent 100 unreliable packets, followed by one reliable
packet, followed by 50 more unreliable packets. In what order should I
expect them to arrive?<br>
    <ul>
      <li>Would I first get the 100 unreliable (in any order, if at
all), followed by the reliable, follows by the 50 unreliable (in any
order, if at all)? </li>
      <li>Would I get these 151 packets in any order with only the
reliable one guaranteed to arrive? </li>
    </ul>
I am also under the impression that the second batch of 50 unreliable
packets would not start to arrive (if at all) until after the one
reliable one has arrived?<br>
    <div class="moz-signature"><br>
    <hr style="height: 1px;">
    <p><span style="font-weight: bold;">Nicholas J Ingrassellino<br>
    <a moz-do-not-send="true" style="text-decoration: none;"
 href="http://www.lifebloodnetworks.com/" target="_blank">LifebloodNetworks.com</a></span>
|| <a moz-do-not-send="true" style="text-decoration: none;"
 href="mailto:nick@lifebloodnetworks.com">nick@lifebloodnetworks.com</a></p>
    <p style="font-size: 75%;">"<span style="font-style: italic;">The
idea that I can be presented with a problem, set out to logically solve
it with the tools at hand, and wind up with a program that could not be
legally used because someone else followed the same logical steps some
years ago and filed for a patent on it is horrifying.</span>"<br>
- <span style="font-weight: bold;">John Carmack</span> on software
patents</p>
    </div>
  </blockquote>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
ENet-discuss mailing list
<a class="moz-txt-link-abbreviated" href="mailto:ENet-discuss@cubik.org">ENet-discuss@cubik.org</a>
<a class="moz-txt-link-freetext" href="http://lists.cubik.org/mailman/listinfo/enet-discuss">http://lists.cubik.org/mailman/listinfo/enet-discuss</a>
  </pre>
</blockquote>
</body>
</html>