gpt4 book ai didi

c - C语言连接邮件服务器的方法

转载 作者:太空宇宙 更新时间:2023-11-04 07:03:35 25 4
gpt4 key购买 nike

我试图连接到局域网中的邮件服务器。邮件服务器的ip是192.168.1.1。所以,我尝试了下面的程序来测试。

程序:

#include<stdio.h>
#include<stdlib.h>
#include<sys/types.h>
#include<sys/socket.h>
#include<arpa/inet.h>
int main()
{
struct sockaddr_in sa;
struct in_addr ip;

int fd=socket(AF_INET,SOCK_STREAM,0);

if(inet_pton(AF_INET,"192.168.1.1",&ip)==-1){
printf("Unable to convert ip to binary\n");
perror("");
exit(1);
}

sa.sin_family=AF_INET;
sa.sin_port=25;
sa.sin_addr=ip;

if(connect(fd,(struct sockaddr*)&sa,sizeof(sa))==-1){
printf("Unable to connect to server\n");
perror("");
exit(1);
}
else{
printf("Successfully connected to server...\n");
}
}

输出:

$ ./a.out 
Unable to connect to server
Connection refused
$

但是通过telnet,连接成功如下图。

$ telnet 192.168.1.1 25
Trying 192.168.1.1...
Connected to 192.168.1.1.
Escape character is '^]'.
220 mail.msys.co.in ESMTP Postfix (Debian/GNU)
^]
telnet> Connection closed.
$

那么,我在这里犯了什么错误。我的程序有什么问题吗?我请求您帮助我解决这个问题以及它发生的原因。

最佳答案

通过 wireshark 跟踪,您可以看到您的代码尝试连接到端口 6400。尝试:

sa.sin_port=htons(25);

关于c - C语言连接邮件服务器的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35239576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com