📄 net.h
字号:
/* * net.h - header of net.c * Copyright 2002, 2003 Krisztian Pifko <monsta@users.sourceforge.net> * * Author: * Krisztian Pifko <monsta@users.sourceforge.net> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */#include <unistd.h>#include <sys/socket.h>#include <net/if.h>#include <netinet/in.h>#include <arpa/inet.h>#include <netdb.h>#include <sys/ioctl.h>#ifdef ENV_SOLARIS#include <sys/filio.h>typedef uint32_t u_int32_t;#endif#define BLOCK 0extern void closesocket (int sock);//extern void closesocket_s (char *s,int sock);extern int acceptconnection (int sock, u_long * remote_ip);extern int listenonport (u_short port);//extern int connectto (in_addr_t addr, in_port_t port);extern int connectto2 (char *address, int connect_port);int connect_udp (u_long ip, int port);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -