| | |
| | | import java.net.InetAddress;
|
| | | import java.net.Socket;
|
| | |
|
| | | import org.eclipse.jgit.transport.Daemon;
|
| | | import org.eclipse.jgit.transport.PacketLineIn;
|
| | | import org.eclipse.jgit.transport.resolver.ServiceNotAuthorizedException;
|
| | | import org.eclipse.jgit.transport.resolver.ServiceNotEnabledException;
|
| | |
| | | private InputStream rawIn;
|
| | |
|
| | | private OutputStream rawOut;
|
| | | |
| | |
|
| | | private String repositoryName;
|
| | |
|
| | | GitDaemonClient(final GitDaemon d) {
|
| | |
| | | public OutputStream getOutputStream() {
|
| | | return rawOut;
|
| | | }
|
| | | |
| | |
|
| | | public void setRepositoryName(String repositoryName) {
|
| | | this.repositoryName = repositoryName;
|
| | | }
|
| | | |
| | |
|
| | | /** @return the name of the requested repository. */
|
| | | public String getRepositoryName() {
|
| | | return repositoryName;
|