<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  <title></title>
</head>
<body text="#c0c0c0" bgcolor="#000000">
There is a snapshot of today's CVS repo here:
<a class="moz-txt-link-freetext" href="http://lee.fov120.com/enet-Dec-20-2010.tar.gz">http://lee.fov120.com/enet-Dec-20-2010.tar.gz</a><br>
<br>
On 12/20/2010 12:53 PM, Philip Bennefall wrote:
<blockquote cite="mid:9C27770D27FC4BBA87528FA1C5CDFA8C@chicken"
 type="cite">
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  <meta name="GENERATOR" content="MSHTML 8.00.6001.23091">
  <style></style>
  <div><font face="Arial" size="2" color="#000000">Hi Lee,</font></div>
  <div> </div>
  <div><font face="Arial" size="2" color="#000000">Would you be able to
provide a link on the ENet website that retrieves something like a
tarball with the latest revision? I have trouble accessing cvs a lot of
the time so something like that would really help me a lot. I'd like to
put this update into my game engine.</font></div>
  <div> </div>
  <div><font face="Arial" size="2" color="#000000">Thanks!</font></div>
  <div> </div>
  <div><font face="Arial" size="2" color="#000000">Kind regards,</font></div>
  <div> </div>
  <div><font face="Arial" size="2" color="#000000">Philip Bennefall</font></div>
  <blockquote
 style="border-left: 2px solid rgb(0, 0, 0); padding-left: 5px; padding-right: 0px; 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%; 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; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;"><b>From:</b>
    <a moz-do-not-send="true" title="lsalzman@gmail.com"
 href="mailto:lsalzman@gmail.com">Lee Salzman</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">Discussion of the ENet library</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, December 20, 2010 3:48 AM</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>
Re: [ENet-discuss] Packet throttling: it's the little things...</div>
    <div><br>
    </div>
On 12/20/2010 12:21 PM, Kabil Akpınar wrote:
    <blockquote
 cite="mid:AANLkTi=jJ3W6pnbrYWjsr7Tb_-zzWgT4ekPibsj8mYGY@mail.gmail.com"
 type="cite">
      <div class="gmail_quote">2010/12/20 Lee Salzman <span dir="ltr"><<a
 href="mailto:lsalzman@gmail.com" moz-do-not-send="true">lsalzman@gmail.com</a>></span><br>
      <blockquote
 style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"
 class="gmail_quote">
        <div bgcolor="#000000" text="#c0c0c0">Problem solved in one
damned line of code. Oh, how blind I was. :( -> :)<br>
        </div>
      </blockquote>
      <div>So where did you put that damned one line of code? </div>
-- <br>
      </div>
      <div>Kabil Akpınar</div>
    </blockquote>
    <br>
As per commit to ENet cvs:<br>
    <br>
Index: protocol.c<br>
===================================================================<br>
RCS file: /var/lib/cvs/enet/enet/protocol.c,v<br>
retrieving revision 1.34<br>
retrieving revision 1.35<br>
diff -r1.34 -r1.35<br>
1294c1294,1296<br>
<           if (peer -> reliableDataInTransit + outgoingCommand
-> fragmentLength > peer -> windowSize)<br>
---<br>
>           enet_uint32 windowSize = (peer -> packetThrottle *
peer -> windowSize) / ENET_PEER_PACKET_THROTTLE_SCALE;<br>
> <br>
>           if (peer -> reliableDataInTransit + outgoingCommand
-> fragmentLength > ENET_MAX (windowSize, peer -> mtu))<br>
    <br>
    <br>
  </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>
<br>
</body>
</html>