/* 送信 */ char buff[]="abcdefg"; send( fd , buff , sizeof(buff) , 0 ); /* 受信 */ char buff[20]; recv( fd , buff , sizeof(buff) , 0 );
send( fd , buff , sizeof(buff) , 0 );