예제 #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);