8000 Set GitProxyOptions type to default to auto by jones-gareth · Pull Request #2043 · libgit2/libgit2sharp · GitHub
[go: up one dir, main page]

Skip to content

Set GitProxyOptions type to default to auto #2043

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Set GitProxyOptions type to default to auto
  • Loading branch information
jones-gareth committed Jun 17, 2023
commit 428f1e0d43aa5fc0ca1fccc0a702025605df65ae
4 changes: 2 additions & 2 deletions LibGit2Sharp/Core/GitProxyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ internal enum GitProxyType
}

[StructLayout(LayoutKind.Sequential)]
internal struct GitProxyOptions
internal sealed class GitProxyOptions
{
public uint Version;
public GitProxyType Type;
public GitProxyType Type = GitProxyType.Auto;
public IntPtr Url;
public IntPtr CredentialsCb;
public IntPtr CertificateCheck;
Expand Down
0