代码搜索:如何学习 socket?

找到约 10,000 项符合「如何学习 socket?」的源代码

代码结果 10,000
www.eeworm.com/read/479151/1340953

h socket.h

#ifndef _LINUX_SOCKET_H #define _LINUX_SOCKET_H #if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2) #include /* arch-dependent defines */ #include /
www.eeworm.com/read/479151/1342453

h socket.h

#ifndef _ASMARM_SOCKET_H #define _ASMARM_SOCKET_H #include /* For setsockoptions(2) */ #define SOL_SOCKET 1 #define SO_DEBUG 1 #define SO_REUSEADDR 2 #define SO_TYPE 3 #define SO_E
www.eeworm.com/read/478603/1349810

c socket.c

#include #include #include #include "socket.h" #include "../../uip/uip.h" #include "../../uip/uiplib.h" #include "../../uip/timer.h" #include "../../uip/pt.h" #includ
www.eeworm.com/read/478603/1349811

h socket.h

#ifndef __SOCKET_H__ #define __SOCKET_H__ #include "../../uip/psock.h" void socket_appcall(void); #define MAGIC 0xB4C29FBD struct socketfifo { u8_t *buf; unsigned short fifosize; volatile u
www.eeworm.com/read/475888/1377650

java socket.java

/* * * * Copyright 1990-2007 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute
www.eeworm.com/read/475888/1377651

java socket.java

/* * * * Copyright 1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute i
www.eeworm.com/read/475888/1378993

java socket.java

/* * @(#)Socket.java 1.63 06/10/10 * * Copyright 1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is
www.eeworm.com/read/474814/1390547

cc socket.cc

// $Header$ #include #include #include "Socket.h" #include "system.h" Socket::Socket( int arg_is_local, int socket_fd ) { is_local = arg_is_local; if ( socket_fd < 0 ) fd
www.eeworm.com/read/474814/1390552

h socket.h

// $Header$ #ifndef Socket_h #define Socket_h class Socket { public: // The first parameter, if true, specifies that the socket // will only be used locally (same host). The second, if // pr
www.eeworm.com/read/473395/1398643

c socket.c

/* Simple test-case for the BSD socket API : echo on TCP port 7 */ #include "lwip/sys.h" #define LWIP_COMPAT_SOCKETS 1 #include "lwip/sockets.h" char buf[400]; static void socket_thread(voi