Here you can find the source of getSocket()
public static Socket getSocket()
//package com.java2s; //License from project: Open Source License import java.net.Socket; public class Main { static Socket clientSocket; /**//from w w w .j a v a 2s.co m * Return the user socket * @return Socket the Client Socket */ public static Socket getSocket() { return clientSocket; } }