我正在尝试使用RPC实现NFS。现在我的规范文件看起来像这样:(这是它的非常基本的版本:))
struct input
{
char command[20];
char arg[10][10];
int numargs;
};
struct lsresult
{
char arr[50][256];
};
program NFSPROG
{
version NFSVERSION
{
lsresult ls(input) = 1;
int cd(input) = 2;
int mkdir(input) = 3;
int mkfile(input) = 4;
} = 1;
} = 0x21111111;
当我尝试使用Spec.x
编译此rpcgen
时,出现如下错误:
char arg[10][10];
^^^^^^^^^^^^^^
Spec.x, line 4: expected ';'
这可能是什么原因?我不能在RPC规范的结构内声明2D数组吗?? (当我尝试以这种方式声明变量时,出现了相同的错误:int a,b,c
在结构中!)
答案 0 :(得分:3)
在rpcgen的总站中,您需要一个字符串数组,而不是2d字符数组。首先,您必须输入一个参数类型的定义
typedef string arg<10>;
,然后将这些参数组成一个数组:
struct input
{
string command<20>;
arg args[10];
int numargs;
};
与lsresult类似:
typedef string filename<50>;
struct lsresult
{
filename arr[256];
};
应该可以