📄 natplainsocketimplnonet.cc
字号:
/* Copyright (C) 2003 Free Software Foundation This file is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License. Please consult the file "LIBGCJ_LICENSE" fordetails. */#include <config.h>#include <platform.h>#include <gnu/java/net/PlainSocketImpl.h>#include <gnu/java/net/PlainSocketImpl$SocketInputStream.h>#include <gnu/java/net/PlainSocketImpl$SocketOutputStream.h>#include <java/io/IOException.h>#include <java/net/BindException.h>#include <java/net/ConnectException.h>#include <java/net/SocketException.h>voidgnu::java::net::PlainSocketImpl::create (jboolean){ throw new ::java::io::IOException ( JvNewStringLatin1 ("SocketImpl.create: unimplemented"));}voidgnu::java::net::PlainSocketImpl::bind (::java::net::InetAddress *, jint){ throw new ::java::net::BindException ( JvNewStringLatin1 ("SocketImpl.bind: unimplemented"));}voidgnu::java::net::PlainSocketImpl::connect (::java::net::SocketAddress *, jint){ throw new ::java::net::ConnectException ( JvNewStringLatin1 ("SocketImpl.connect: unimplemented"));}voidgnu::java::net::PlainSocketImpl::listen (jint){ throw new ::java::io::IOException ( JvNewStringLatin1 ("SocketImpl.listen: unimplemented"));}voidgnu::java::net::PlainSocketImpl::accept (gnu::java::net::PlainSocketImpl *){ throw new ::java::io::IOException ( JvNewStringLatin1 ("SocketImpl.accept: unimplemented"));}voidgnu::java::net::PlainSocketImpl::setOption (jint, ::java::lang::Object *){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.setOption: unimplemented"));}::java::lang::Object *gnu::java::net::PlainSocketImpl::getOption (jint){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.getOption: unimplemented"));}jintgnu::java::net::PlainSocketImpl$SocketInputStream::read(void){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.read: unimplemented"));}jintgnu::java::net::PlainSocketImpl$SocketInputStream::read(jbyteArray buffer, jint offset, jint count){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.read: unimplemented"));}voidgnu::java::net::PlainSocketImpl$SocketOutputStream::write(jint b){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.write: unimplemented"));}voidgnu::java::net::PlainSocketImpl$SocketOutputStream::write(jbyteArray b, jint offset, jint len){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.write: unimplemented"));}voidgnu::java::net::PlainSocketImpl::sendUrgentData(jint data){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.sendUrgentData: unimplemented"));}jintgnu::java::net::PlainSocketImpl::available(void){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.available: unimplemented"));}voidgnu::java::net::PlainSocketImpl::close(void){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.close: unimplemented"));}voidgnu::java::net::PlainSocketImpl::shutdownInput (void){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.shutdownInput: unimplemented"));}voidgnu::java::net::PlainSocketImpl::shutdownOutput (void){ throw new ::java::net::SocketException ( JvNewStringLatin1 ("SocketImpl.shutdownOutput: unimplemented"));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -