diff options
| author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-18 11:53:24 +0200 |
|---|---|---|
| committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-09-24 11:00:51 +0200 |
| commit | 062804570c3e25170b52f849da173f8266b5e33e (patch) | |
| tree | 549b2179523a84912e45cbf9490733474dc49b5c /src/netops.h | |
| parent | 3a495c19bd280f5455047a9ac0e936f2c2f2f9a9 (diff) | |
| download | libgit2-062804570c3e25170b52f849da173f8266b5e33e.tar.gz | |
Join typedef and struct definitions in single file.
Diffstat (limited to 'src/netops.h')
| -rw-r--r-- | src/netops.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/src/netops.h b/src/netops.h index dfb4ab7b4..75113fc7f 100644 --- a/src/netops.h +++ b/src/netops.h @@ -14,34 +14,28 @@ # include <openssl/ssl.h> #endif -struct gitno_ssl { +typedef struct gitno_ssl { #ifdef GIT_SSL SSL *ssl; #else size_t dummy; #endif -}; - -typedef struct gitno_ssl gitno_ssl; +} gitno_ssl; /* Represents a socket that may or may not be using SSL */ -struct gitno_socket { +typedef struct gitno_socket { GIT_SOCKET socket; gitno_ssl ssl; -}; +} gitno_socket; -typedef struct gitno_socket gitno_socket; - -struct gitno_buffer { +typedef struct gitno_buffer { char *data; size_t len; size_t offset; gitno_socket *socket; int (*recv)(struct gitno_buffer *buffer); void *cb_data; -}; - -typedef struct gitno_buffer gitno_buffer; +} gitno_buffer; /* Flags to gitno_connect */ enum { |
