linux下网络编程 端口设置的问题
#include "csapp.h"
#define MAX_ARG_NUM 10
#define MAXLINE 512
#define PEER_PORT 1719
struct Udp2SipMsg
{
int argc;
char *argv[MAX_ARG_NUM];
char buf[MAXLINE];
} udp2sipmsg;
char *sendbuf;
char *recvbuf;
struct sockaddr_in host,peer;
struct hostent *peerp;
char *peername;
int sockfd=0;
int
udp_init(void/*char *peername*/)
{
sendbuf=(char *)malloc(sizeof(udp2sipmsg.buf[MAXLINE]));
recvbuf=(char *)malloc(sizeof(udp2sipmsg.buf[MAXLINE]));
bzero(sendbuf,sizeof(udp2sipmsg.buf[MAXLINE]));
bzero(recvbuf,sizeof(udp2sipmsg.buf[MAXLINE]));
sockfd=socket(AF_INET,SOCK_DGRAM,0);
if(sockfd <=0)
perror("socket error");
printf("sockfd=%d",sockfd);
int optval = 1;
setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (char *)&optval, sizeof(optval));
char *peername="heyunping";
if((peerp=gethostbyname(peername))==NULL)
perror("getpeerbyname error");
相关问答:
写了个测试程序如下
struct hostent *hp;
char AlarmDevIP[20];
int x2;
hp = gethostbyname("www.google.com");
if (hp)
{
......
我的板子用嵌入式linux系统发送组播包给我PC虚拟机的linux,虚拟机的linux可以接收到,但是同样的程序,用虚拟机的linux发送,嵌入式linux却接收不到,具体表现为阻塞在recvfrom函数。
大致已经可以排除的问题:
1 ......
有谁能介绍一下,现在主流的linux有哪些版本。
小弟刚接触linux,现在装的是redhat3.2.2-5的版本,这个连samba都装不上,搞到很多错误,所以期盼各位给推荐个比较好的linux系统,主要用于初期学习和后期j2ee /php开 ......
我在Linux上装了Oracle数据库,其中有一个表,大约有90000条数据,用Oracle进行分页查询的时候,发现很慢
sql语句如下:
select *
from (select row_.*, rownum rownum_
from (select * ......
12:16:55,259 ERROR InterceptorBuilder:63 - Actual exception
Caught Exception while registering Interceptor class org.apache.struts2.interceptor.debugging.DebuggingInterceptor - interceptor - jar:file ......