Skip to content

Commit

Permalink
Implement extended stat information (plus misc cleanup).
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 authored and simonmichal committed Jun 21, 2019
1 parent 76a03d5 commit bef3bb0
Show file tree
Hide file tree
Showing 12 changed files with 316 additions and 662 deletions.
3 changes: 3 additions & 0 deletions src/XProtocol/XProtocol.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/stat.h>
#include <unistd.h>

#include "XProtocol/XProtocol.hh"

Expand Down
5 changes: 4 additions & 1 deletion src/XProtocol/XProtocol.hh
Original file line number Diff line number Diff line change
Expand Up @@ -959,6 +959,8 @@ struct ALIGN_CHECK {char chkszreq[25-sizeof(ClientRequest)];
#ifndef ENOATTR
#define ENOATTR ENODATA
#endif

struct stat;

class XProtocol
{
Expand Down Expand Up @@ -1034,5 +1036,6 @@ static int toErrno( int xerr )
static const char *errName(kXR_int32 errCode);

static const char *reqName(kXR_unt16 reqCode);
};

}; // XProtocol
#endif

0 comments on commit bef3bb0

Please sign in to comment.