You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SocketListener.java 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. * Copyright (C) 2012 Brian P. Hinz
  3. *
  4. * This is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This software is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this software; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  17. * USA.
  18. */
  19. // -=- SocketListener - abstract base-class for any kind of network stream/socket
  20. package com.tigervnc.network;
  21. import java.nio.channels.*;
  22. import java.nio.channels.spi.SelectorProvider;
  23. abstract public class SocketListener {
  24. public SocketListener() {}
  25. // shutdown() stops the socket from accepting further connections
  26. abstract public void shutdown() throws Exception;
  27. // accept() returns a new Socket object if there is a connection
  28. // attempt in progress AND if the connection passes the filter
  29. // if one is installed. Otherwise, returns 0.
  30. abstract public Socket accept();
  31. public FileDescriptor getFd() {return fd;}
  32. protected FileDescriptor fd;
  33. }