1 17 18 package org.apache.tomcat.jni; 19 20 25 26 public class Local { 27 28 34 public static native long create(String path, long cont) 35 throws Exception ; 36 37 44 public static native int bind(long sock, long sa); 45 46 54 public static native int listen(long sock, int backlog); 55 56 64 public static native long accept(long sock) 65 throws Exception ; 66 67 74 public static native int connect(long sock, long sa); 75 76 } 77 | Popular Tags |