svn path=/branches/mono-2-6/xsp/; revision=155320
This commit is contained in:
Marek Habersack 2010-04-13 17:45:32 +00:00
Родитель b86e6bec92
Коммит 1e14a1752e
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2010-04-13 Marek Habersack <mhabersack@novell.com>
* ModMonoRequest.cs: SendResponseFromMemory must advance the
pointer when not on Linux.
2010-03-31 Marek Habersack <mhabersack@novell.com>
* man/xsp.1.in: updated documentation of the --nonstop

Просмотреть файл

@ -322,6 +322,7 @@ namespace Mono.WebServer
byte [] buf = writer_ms.GetBuffer ();
Marshal.Copy (ptr, buf, 0, size);
length -= size;
unsafe { ptr = (IntPtr)((byte*)ptr.ToPointer () + size); }
client.Send (buf, size, SocketFlags.None);
}
}