免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1947 | 回复: 0

linux 密钥保留服务 [复制链接]

论坛徽章:
0
发表于 2012-12-17 16:22 |显示全部楼层
试验密钥环出现了个问题: 写了个简单函数调用add_key(),

  1 #include <keyutils.h>
  2 int main(int argc, char ** argv)
  3 {
  4         int rc;
  5         char * dec = "1234567a";
  6         char * key = "12345679a";
  7         int key_size = 9;
  8         add_key("user", dec, (void*)key, 9, KEY_SPEC_USER_KEYRING);
  9         if(rc == -1)
10         {
11                 return -1;
12         }
13
14         return 0;
15
16 }

  但是编译出现问题:
    1 all:
    2         gcc  -lkeyutils test.c -o test
   
/usr/include/keyutils.h:101: 错误:expected declaration specifiers or ‘...’ before ‘size_t’
/usr/include/keyutils.h:116: 错误:expected declaration specifiers or ‘...’ before ‘size_t’
/usr/include/keyutils.h:118: 错误:expected declaration specifiers or ‘...’ before ‘uid_t’
/usr/include/keyutils.h:118: 错误:expected declaration specifiers or ‘...’ before ‘gid_t’
/usr/include/keyutils.h:120: 错误:expected declaration specifiers or ‘...’ before ‘size_t’
/usr/include/keyutils.h:128: 错误:expected declaration specifiers or ‘...’ before ‘size_t’
/usr/include/keyutils.h:131: 错误:expected declaration specifiers or ‘...’ before ‘size_t’
/usr/include/keyutils.h:137: 错误:expected declaration specifiers or ‘...’ before ‘size_t’
test.c: 在函数‘main’中:
test.c:10: 错误:提供给函数‘add_key’的实参太多
哪位大神指点一下。
   




您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP