Sha256: 59cd164dec6960d8af55859b0d1504b29c2b29f489618fb57f81e57ed3de9ad2
Contents?: true
Size: 573 Bytes
Versions: 2
Compression:
Stored size: 573 Bytes
Contents
/* * Copyright (C) the libgit2 contributors. All rights reserved. * * 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_streams_socket_h__ #define INCLUDE_streams_socket_h__ #include "common.h" #include "stream.h" typedef struct { git_stream parent; char *host; char *port; GIT_SOCKET s; } git_socket_stream; extern int git_socket_stream_new(git_stream **out, const char *host, const char *port); extern int git_socket_stream_global_init(void); #endif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rugged-1.7.2 | vendor/libgit2/src/libgit2/streams/socket.h |
rugged-1.7.1 | vendor/libgit2/src/libgit2/streams/socket.h |