public RequestListener(RtspServer self ) {
			    try {
                    parent = self;
                    mServer = new ServerSocket(parent.getPort());
				    Start();
			    } catch (BindException e) {
				    Log.Error(TAG,"Port already in use !");
				    postError(e, ERROR_BIND_FAILED);
				    throw e;
			    }
		    }
        public RtspServer() {

            selfObj = this;

        }