mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 23:54:50 +00:00

This allows us to leave out the buffer handling logic. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
23 lines
581 B
C
23 lines
581 B
C
/*
|
|
* netops.h - convencience functions for networking
|
|
*/
|
|
#ifndef INCLUDE_netops_h__
|
|
#define INCLUDE_netops_h__
|
|
|
|
typedef struct gitno_buffer {
|
|
char *data;
|
|
unsigned int len;
|
|
unsigned int offset;
|
|
int fd;
|
|
} gitno_buffer;
|
|
|
|
void gitno_buffer_setup(gitno_buffer *buf, char *data, unsigned int len, int fd);
|
|
int gitno_recv(gitno_buffer *buf);
|
|
void gitno_consume(gitno_buffer *buf, const char *ptr);
|
|
void gitno_consume_n(gitno_buffer *buf, unsigned int cons);
|
|
|
|
int gitno_connect(const char *host, const char *port);
|
|
int gitno_send(int s, const char *msg, int len, int flags);
|
|
|
|
#endif
|