C# Class GitSharp.Core.Transport.TransportGitAnon

Transport through a git-daemon waiting for anonymous TCP connections. This transport supports the git:// protocol, usually run on the IANA registered port 9418. It is a popular means for distributing open source projects, as there are no authentication or authorization overheads.
Inheritance: GitSharp.Core.Transport.TcpTransport, IPackTransport
Datei anzeigen Open project: jagregory/GitSharp Class Usage Examples

Public Methods

Method Description
TransportGitAnon ( Repository local, URIish uri ) : System.Net.Sockets
canHandle ( URIish uri ) : bool
close ( ) : void
openFetch ( ) : IFetchConnection
openPush ( ) : IPushConnection

Private Methods

Method Description
OpenConnection ( ) : Socket
Service ( string name, PacketLineOut pckOut ) : void

Method Details

TransportGitAnon() public method

public TransportGitAnon ( Repository local, URIish uri ) : System.Net.Sockets
local Repository
uri URIish
return System.Net.Sockets

canHandle() public static method

public static canHandle ( URIish uri ) : bool
uri URIish
return bool

close() public method

public close ( ) : void
return void

openFetch() public method

public openFetch ( ) : IFetchConnection
return IFetchConnection

openPush() public method

public openPush ( ) : IPushConnection
return IPushConnection