コード例 #1
0
 public ByteBuffer(byte [] bytes, int position, int length)
 {
     buffer = new ByteBufferS(bytes, position, length);
 }
コード例 #2
0
ファイル: SocketStream.cs プロジェクト: axelc/manos
 internal int Send(ByteBufferS [] buffers, int length, out int error)
 {
     return manos_socket_send (fd, buffers, length, out error);
 }
コード例 #3
0
ファイル: ByteBuffer.cs プロジェクト: JoergEg/manos
 public ByteBuffer(byte [] bytes, int position, int length)
 {
     buffer = new ByteBufferS (bytes, position, length);
 }
コード例 #4
0
ファイル: SocketStream.cs プロジェクト: axelc/manos
 internal static extern int manos_socket_send(int fd, ByteBufferS [] buffers, int len, out int err);