8000 Add proxy options by bording · Pull Request #2065 · libgit2/libgit2sharp · GitHub
[go: up one dir, main page]

Skip to content

Add proxy options #2065

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

Merged
merged 9 commits into from
Dec 3, 2023
Merged
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
Update GitProxyOptions
  • Loading branch information
bording committed Nov 27, 2023
commit e13df56af676eb4bf89dc864d20eabeeca4fe2c3
6 changes: 3 additions & 3 deletions LibGit2Sharp/Core/GitProxyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ internal struct GitProxyOptions
public uint Version;
public GitProxyType Type;
public IntPtr Url;
public IntPtr CredentialsCb;
public IntPtr CertificateCheck;
public IntPtr CbPayload;
public NativeMethods.git_cred_acquire_cb Credentials;
public NativeMethods.git_transport_certificate_check_cb CertificateCheck;
public IntPtr Payload;
}
}
0