19 lines
505 B
C
19 lines
505 B
C
#ifndef FETCH_OBJECT_INFO_H
|
|
#define FETCH_OBJECT_INFO_H
|
|
|
|
#include "pkt-line.h"
|
|
#include "protocol.h"
|
|
#include "object-store-ll.h"
|
|
|
|
struct object_info_args {
|
|
struct string_list *object_info_options;
|
|
const struct string_list *server_options;
|
|
struct oid_array *oids;
|
|
};
|
|
|
|
int fetch_object_info(enum protocol_version version, struct object_info_args *args,
|
|
struct packet_reader *reader, struct object_info *object_info_data,
|
|
int stateless_rpc, int fd_out);
|
|
|
|
#endif /* FETCH_OBJECT_INFO_H */
|