mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-12 18:49:38 +00:00

The fetch code takes advantage of this to implement a progress callback every 100kb of transfer.
45 lines
1.4 KiB
C
45 lines
1.4 KiB
C
/*
|
|
* Copyright (C) 2009-2012 the libgit2 contributors
|
|
*
|
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
|
* a Linking Exception. For full terms see the included COPYING file.
|
|
*/
|
|
#ifndef INCLUDE_netops_h__
|
|
#define INCLUDE_netops_h__
|
|
|
|
#include "posix.h"
|
|
#include "common.h"
|
|
|
|
struct gitno_buffer {
|
|
char *data;
|
|
size_t len;
|
|
size_t offset;
|
|
GIT_SOCKET fd;
|
|
#ifdef GIT_SSL
|
|
struct gitno_ssl *ssl;
|
|
#endif
|
|
int (*recv)(gitno_buffer *buffer);
|
|
void *cb_data;
|
|
void (*packetsize_cb)(int received, void *payload);
|
|
void *packetsize_payload;
|
|
};
|
|
|
|
void gitno_buffer_setup(git_transport *t, gitno_buffer *buf, char *data, size_t len);
|
|
void gitno_buffer_setup_callback(git_transport *t, gitno_buffer *buf, char *data, size_t len, int (*recv)(gitno_buffer *buf), void *cb_data);
|
|
int gitno_recv(gitno_buffer *buf);
|
|
int gitno__recv(gitno_buffer *buf);
|
|
|
|
void gitno_consume(gitno_buffer *buf, const char *ptr);
|
|
void gitno_consume_n(gitno_buffer *buf, size_t cons);
|
|
|
|
int gitno_connect(git_transport *t, const char *host, const char *port);
|
|
int gitno_send(git_transport *t, const char *msg, size_t len, int flags);
|
|
int gitno_close(GIT_SOCKET s);
|
|
int gitno_ssl_teardown(git_transport *t);
|
|
int gitno_send_chunk_size(int s, size_t len);
|
|
int gitno_select_in(gitno_buffer *buf, long int sec, long int usec);
|
|
|
|
int gitno_extract_host_and_port(char **host, char **port, const char *url, const char *default_port);
|
|
|
|
#endif
|