- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
my rpc_telnet.x is below,
01
02 struct rpc_telnet_data {
03 string user_id<50>;
04 };
05
06 struct rpc_result {
07 string msg<50>;
08
09 };
10
11 program RPC_TELNET_PROG {
12 version RPC_TELNET_VERS {
13 rpc_result RPC_TEST(rpc_telnet_data) = 1;
14
15 } = 1;
16 } = 0x23451112;
};
program RPC_TELNET_PROG {
version RPC_TELNET_VERS {
rpc_result RPC_TEST(rpc_telnet_data) = 1;
} = 1;
} = 0x23451112;
`
------------------------
当服务器端返回整数时(我设置了整数版本 rpc_telnet.x ),它工作得很好。但是当服务器端返回结果是string(char*)时,就会报segment fault。那么,我怎样才能正确设置 return char(result->msg) 呢?下面是我的服务器端代码。
rpc_telnet_server.c
------------------------------------------------
01 /*
02 * This is sample code generated by rpcgen.
03 * These are only templates and you can use them
04 * as a guideline for developing your own functions.
05 */
06
07 #include "rpc_telnet.h"
08
09 bool_t
10 rpc_test_1_svc(rpc_telnet_data *argp, rpc_result *result, struct svc_req *rqstp)
11 {
12 bool_t retval=1;
13 cout << (*argp).user_id << endl;
14 result->msg = "kk";
15 /*
16 * insert server code here
17 */
18
19 return (retval);
20 }
21
22 int
23 rpc_telnet_prog_1_freeresult(SVCXPRT *transp, xdrproc_t xdr_result, caddr_t result)
24 {
25
26 (void) xdr_free(xdr_result, result);
27
28 /*
29 * Insert additional freeing code here, if needed
30 */
31
32 }
rpc_telnet_svc.c
------------------------------------------------
001 /*
002 * Please do not edit this file.
003 * It was generated using rpcgen.
004 */
005
006 #include "rpc_telnet.h"
007 #include <stdio.h>
008 #include <stdlib.h> /* getenv, exit */
009 #include <rpc/pmap_clnt.h> /* for pmap_unset */
010 #include <string.h> /* strcmp */
011 #include <rpc/rpc_com.h>
012 #include <fcntl.h> /* open */
013 #include <unistd.h> /* fork / setsid */
014 #include <sys/types.h>
015 #include <string.h>
016 #include <sys/resource.h> /* rlimit */
017 #include <syslog.h>
018
019 #ifdef DEBUG
020 #define RPC_SVC_FG
021 #endif
022
023 void
024 rpc_telnet_prog_1(struct svc_req *rqstp, SVCXPRT *transp)
025 {
026 union {
027 rpc_telnet_data rpc_test_1_arg;
028 } argument;
029 union {
030 rpc_result rpc_test_1_res;
031 } result;
032 bool_t retval;
033 xdrproc_t xdr_argument, xdr_result;
034 bool_t (*local)(char *, void *, struct svc_req *);
035
036 switch (rqstp->rq_proc) {
037 case NULLPROC:
038 (void) svc_sendreply(transp,
039 (xdrproc_t) xdr_void, (char *)NULL);
040 return;
041
042 case RPC_TEST:
043 xdr_argument = (xdrproc_t) xdr_rpc_telnet_data;
044 xdr_result = (xdrproc_t) xdr_rpc_result;
045 local = (bool_t (*) (char *, void *, struct svc_req *))rpc_test_1_svc;
046 break;
047
048 default:
049 svcerr_noproc(transp);
050 return;
051 }
052 (void) memset((char *)&argument, 0, sizeof (argument));
053 if (!svc_getargs(transp, xdr_argument, (char *)(caddr_t) &argument)) {
054 svcerr_decode(transp);
055 return;
056 }
057 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
058
059
060
061 if (retval > 0 && !svc_sendreply(transp, xdr_result, (char *)&result)) {
062
063 svcerr_systemerr(transp);
064 }
065
066 if (!svc_freeargs(transp, xdr_argument, (char *)(caddr_t) &argument)) {
067 fprintf(stderr, "unable to free arguments");
068 exit(1);
069 }
070
075
076 if (!rpc_telnet_prog_1_freeresult(transp, xdr_result,(char *) (caddr_t) &result))
077 fprintf(stderr, "unable to free results");
078
079 cout << "rpc_telnet_prog_1_freeresult end" << endl;
080
081 return;
082 }
083
084 int
085 main()
086 {
087 pid_t pid;
088 int i;
089 #ifndef RPC_SVC_FG
090 int size;
091 struct rlimit rl;
092 pid = fork();
093 if (pid < 0) {
094 perror("cannot fork");
095 exit(1);
096 }
097 if (pid)
098 exit(0);
099 rl.rlim_max = 0;
100 getrlimit(RLIMIT_NOFILE, &rl);
101 if ((size = rl.rlim_max) == 0)
102 exit(1);
103 for (i = 0; i < size; i++)
104 (void) close(i);
105 i = open("/dev/console", 2);
106 (void) dup2(i, 1);
107 (void) dup2(i, 2);
108 setsid();
109 openlog("rpc_telnet", LOG_PID, LOG_DAEMON);
110 #endif
111 if (!svc_create(rpc_telnet_prog_1, RPC_TELNET_PROG, RPC_TELNET_VERS, "netpath")) {
112 fprintf(stderr, "unable to create (RPC_TELNET_PROG, RPC_TELNET_VERS) for netpath.");
113 exit(1);
114 }
115
116 svc_run();
117 fprintf(stderr, "svc_run returned");
118 exit(1);
119 /* NOTREACHED */
120 }
gdb ./rpc_telnet_server
---------------------
bt
01 [New LWP 100114]
02 [New Thread 28404300 (LWP 100114/rpc_telnet_server)]
03 55
04
05 Program received signal SIGSEGV, Segmentation fault.
06 [Switching to Thread 28404300 (LWP 100114/rpc_telnet_server)]
07 0x2822b584 in free () from /lib/libc.so.7
08 (gdb) bt
09 #0 0x2822b584 in free () from /lib/libc.so.7
10 #1 0x2824ad2a in xdr_string () from /lib/libc.so.7
11 #2 0x08048ec0 in xdr_rpc_result (xdrs=0x284821c8, objp=0xbfbfd514)
12 at rpc_telnet_xdr.c:21
13 #3 0x28238be3 in svc_create () from /lib/libc.so.7
14 #4 0x08048c4e in rpc_telnet_prog_1 (rqstp=0xbfbfd598, transp=0x28238be3)
15 at rpc_telnet_svc.c:71
16 #5 0x2823cfd8 in svc_getreq_common () from /lib/libc.so.7
17 #6 0x2823d541 in svc_getreqset () from /lib/libc.so.7
18 #7 0x281dbb64 in svc_run () from /lib/libc.so.7
19 #8 0x08048b3f in main () at rpc_telnet_svc.c:116
01 g++ -g -DRPC_SVC_FG -Wall -Wextra -pedantic -O2 -pipe -D_REENTRANT -D_THEAD_SAF -c rpc_telnet_clnt.c
02 g++ -g -DRPC_SVC_FG -Wall -Wextra -pedantic -O2 -pipe -D_REENTRANT -D_THEAD_SAF -c rpc_telnet_client.c
03 rpc_telnet_client.c: In function 'void rpc_telnet_prog_1(char*)':
04 rpc_telnet_client.c:18: warning: deprecated conversion from string constant to 'har*'
05 rpc_telnet_client.c:19: warning: deprecated conversion from string constant to 'har*'
06 g++ -g -DRPC_SVC_FG -Wall -Wextra -pedantic -O2 -pipe -D_REENTRANT -D_THEAD_SAF -c rpc_telnet_xdr.c
07 g++ -g -DRPC_SVC_FG -Wall -Wextra -pedantic -o rpc_telnet_client rpc_telnet_cln.o rpc_telnet_client.o rpc_telnet_xdr.o -pthread
08 g++ -g -DRPC_SVC_FG -Wall -Wextra -pedantic -O2 -pipe -D_REENTRANT -D_THEAD_SAF -c rpc_telnet_svc.c
09 rpc_telnet_svc.c: In function 'int main()':
10 rpc_telnet_svc.c:87: warning: unused variable 'pid'
11 rpc_telnet_svc.c:88: warning: unused variable 'i'
12 g++ -g -DRPC_SVC_FG -Wall -Wextra -pedantic -O2 -pipe -D_REENTRANT -D_THEAD_SAF -c rpc_telnet_server.c
13 rpc_telnet_server.c: In function 'bool_t rpc_test_1_svc(rpc_telnet_data*, rpc_reult*, svc_req*)':
14 rpc_telnet_server.c:14: warning: deprecated conversion from string constant to 'har*'
15 rpc_telnet_server.c: At global scope:
16 rpc_telnet_server.c:10: warning: unused parameter 'rqstp'
17 rpc_telnet_server.c:23: warning: unused parameter 'transp'
18 rpc_telnet_server.c: In function 'int rpc_telnet_prog_1_freeresult(SVCXPRT*, boo_t (*)(XDR*, ...), char*)':
19 rpc_telnet_server.c:32: warning: control reaches end of non-void function
20 g++ -g -DRPC_SVC_FG -Wall -Wextra -pedantic -o rpc_telnet_server rpc_telnet_svco rpc_telnet_server.o rpc_telnet_xdr.o -pthread
最佳答案
在我提出问题之前,我每周都会测试代码、谷歌。最后我得到了正确的解决方案。当服务器端返回类型为字符串并生成模板时
rpcgen -aM rpc_telnet.x //-M for multithread purpose
1.设置服务器端返回字符串ex:在 rpc_telnet_server.c -> rpc_test_1_svc 函数中
result->msg = (char *)malloc(sizeof(char)*8);
strcpy(result->msg,"888");
2.设置客户端返回字符串ex:在 rpc_telnet_client.c -> rpc_telnet_prog_1 函数中
result_1.msg = (char *)malloc(sizeof(char)*8);
strcpy(result_1.msg,"");
模板生成 xdr_free() 将为您释放 malloc。
关于c++ - rpc server 返回结果 char 会得到 segment fault,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31262959/
本周我将在 Windows Server 2008 上设置一个专用的 SQL Server 2005 机器,并希望将其精简为尽可能简单,同时仍能发挥全部功能。 为此,“服务器核心”选项听起来很有吸引力
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 已关闭 8 年前。 Improve
我获取了 2014 版本数据库的备份,并尝试在另一台服务器中将其恢复到具有相同名称和登录名的数据库中。此 SQL Server 版本是 2016。 恢复备份文件时,出现此错误: TITLE: Micr
我获取了 2014 版本数据库的备份,并尝试在另一台服务器中将其恢复到具有相同名称和登录名的数据库中。此 SQL Server 版本是 2016。 恢复备份文件时,出现此错误: TITLE: Micr
TFS 是否提供任何增强的方法来存储对 sql server 数据库所做的更改,而不是使用它来对在数据库上执行的 sql 语句的文本文件进行版本控制? 或者我正在寻找的功能是否仅在第 3 方工具(如
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我即将将我的 SQL Server 2012 实例升级到 SQL Server 2014。 我已经克隆了主机 Windows VM 并将其重命名为 foo-2012至 foo-2014 . 重新启动时
我想为 SQL Server 登录授予对数据库的访问权限。我知道 sp_grantdbaccess,但它已被弃用。我可以改用什么以及如何检查登录名是否还没有访问数据库的权限? 场景:UserA 创建数
客户别无选择,只能在接下来的几天内从 sql server 2000 迁移到 2008。测试显示 2005 年的重要功能出现了 Not Acceptable 性能下降,但 2008 年却没有。好消息是
我有一个测试数据库,我需要将其导出到我们客户的测试环境中。 这将是一次性的工作。 我正在使用 SQL Server 2005(我的测试数据库是 SQL Server 2005 Express) 执行此
我需要将一个 CSV 文件导入到 mongoDB 不幸的是我遇到了以下错误: error connecting to host: could not connect to server: se
我以为 R2 是一个补丁/服务包。我一直在寻找下载,但没有看到。因此,我假设 R2 是一个新版本,并且我需要 sqlserver 2008 r2 的安装介质来进行升级? 另外,我需要为新许可证付费吗?
我无法使用 SQL Server Management Studio 连接到 SQL Server。 我有一个连接字符串: 我尝试通过在服务器名中输入 myIP、在登录名中输入 MyID、在密码中
我们希望使用 SQL Server 加密来加密数据库中的几个列。我们还需要在生产和测试环境之间传输数据。看来最好的解决方案是在生产和测试服务器上使用相同的主 key 、证书和对称 key ,以便我可以
有没有可以分析 SQL Server 数据库潜在问题的工具? 例如: a foreign key column that is not indexed 没有 FILL FACTOR 的 uniquei
我正在尝试从我的 SQL 2012 BI 版本建立复制,但我收到一条奇怪的错误消息! "You cannot create a publication from server 'X' because
如果您使用 SQL Server 身份验证 (2005),登录详细信息是否以明文形式通过网络发送? 最佳答案 如您所愿,安全无忧... 您可以相当轻松地配置 SSL,如果您没有受信任的证书,如果您强制
我想将数据从一个表复制到不同服务器之间的另一个表。 如果是在同一服务器和不同的数据库中,我使用了以下 SELECT * INTO DB1..TBL1 FROM DB2..TBL1 (to copy w
我希望得到一些帮助,因为我在这个问题上已经被困了 2 天了! 场景:我可以从我的开发计算机(和其他同事)连接到 SERVER\INSTANCE,但无法从另一个 SQL Server 连接。我得到的错误
我正在尝试从我的 SQL 2012 BI 版本建立复制,但我收到一条奇怪的错误消息! "You cannot create a publication from server 'X' because
我是一名优秀的程序员,十分优秀!