0

我正在使用 gethostname 来获取我正在使用的计算机的名称。在我的主要功能中,我调用它并让 UBU24-PS-23 成为我计算机的正确名称。然后我调用一个函数,它使用 gethostname,我得到一个不同的字符串。在我的主函数中 gethostname 返回 0 所以它可以工作,在我的函数中它返回 -1 所以它失败了。任何想法为什么?这是我的代码

 #include <iostream>
 #include <sys/unistd.h>
 using namespace std;


int funToGetHostName(char * name, size_t len);
int main() {

char hostname[128];
char hostnameFunction[128];

int g = gethostname(hostname, sizeof hostname);
int r = funToGetHostName(hostnameFunction, sizeof hostnameFunction);
cout<<"My hostname: %s\n"<< hostname<< " "<< g<<endl;
cout<<"My hostnameFunction: %s\n"<< hostnameFunction<< " "<< r;

return 0;
}

int funToGetHostName(char * name, size_t len){
    return gethostname(name, sizeof len);
}
4

2 回答 2

3
int funToGetHostName(char * name, size_t len){
    return gethostname(name, sizeof len);
}

sizeof len可能比您预期的要小得多。

相反,你想要:

    return gethostname(name, len);

因为您在调用函数时已经传入了缓冲区长度。

于 2015-03-17T20:27:32.713 回答
2

有一个错误:

int funToGetHostName(char * name, size_t len){
    return gethostname(name, sizeof len);
                             //^^^^^ This is not 128.
}

你需要

int funToGetHostName(char * name, size_t len){
    return gethostname(name, len);
}
于 2015-03-17T20:28:48.490 回答