SOCKET 썸네일형 리스트형 JAVA 입출력 출처 : JAVA programming참고하면 좋은 곳 : https://m.blog.naver.com/PostView.nhn?blogId=slrkanjsepdi&logNo=90140711064&proxyReferer=https%3A%2F%2Fwww.google.co.kr%2F@ . 1byte 입/출력 자바에서 처리하는 입력과 출력은 스트림(Stream)에 의존다시말해 모든 형태의 입력과 출력은 1byte의 흐름으로 이루어져 있다는것 *. 많이쓰이는 형식 @ . 1byte 출력 1. 콘솔 출력용 FileOutputStream fos = new FileOutputStream(FileDescriptor.out); BufferedOutputStream bos = new BufferedOutputStream(f.. 더보기 close_on_exec static __inline__ int adb_socketpair( int sv[2] ){ int rc; rc = unix_socketpair( AF_UNIX, SOCK_STREAM, 0, sv ); if (rc < 0) return -1; close_on_exec( sv[0] ); close_on_exec( sv[1] ); return 0;} static __inline__ void close_on_exec(int fd){ fcntl( fd, F_SETFD, FD_CLOEXEC );} #include int execve(const char *filename, char *const argv[], char *const envp[]);함수를 호출하면 기본적으로는 file descriptor 가 open 된 .. 더보기 socketpair() 출처 : http://osr507doc.sco.com/en/netguide/dusockD.socketpairs_codetext.html socketpair: read / write 가 가능한 한쌍의 socket 을 open 한다. 예제 Socketpair sample code (UNIX only)The following example illustrates the use of socketpairs, which are a slight generalization of pipes used for two-way stream communication. Because socketpairs are an extension of pipes, their use resembles that of pipes rather than.. 더보기 이전 1 다음