100+ results results for 'socket repo:bdrewery/bdlib' (980 ms)
14 /* 15 * WebSocket Framing Protocol 16 *overload1.html git://github.com/MisterTea/HyperNEAT.git | HTML | 94 lines
26<div class="titlepage"><div><div><h5 class="title"> 27<a name="boost_asio.reference.basic_socket_streambuf.shutdown.overload1"></a><a class="link" href="overload1.html" title="basic_socket_streambuf::shutdown (1 of 2 overloads)">basic_socket_streambuf::shutdown 28 (1 of 2 overloads)</a> 44<a name="boost_asio.reference.basic_socket_streambuf.shutdown.overload1.h0"></a> 45 <span class="phrase"><a name="boost_asio.reference.basic_socket_streambuf.shutdown.overload1.parameters"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_socket_streambuf.shutdown.overload1.parameters">Parameters</a> 46 </h6> 57<a name="boost_asio.reference.basic_socket_streambuf.shutdown.overload1.h1"></a> 58 <span class="phrase"><a name="boost_asio.reference.basic_socket_streambuf.shutdown.overload1.exceptions"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_socket_streambuf.shutdown.overload1.exceptions">Exceptions</a> 59 </h6> 75 </p> 76<pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">socket</span> <span class="identifier">socket</span><span class="special">(</span><span class="identifier">io_service</span><span class="special">);</span> 77<span class="special">...</span> 77<span class="special">...</span> 78<span class="identifier">socket</span><span class="special">.</span><span class="identifier">shutdown</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">socket</span><span class="special">::</span><span class="identifier">shutdown_send</span><span class="special">);</span> 79</pre>send.html git://github.com/MisterTea/HyperNEAT.git | HTML | 68 lines
7<link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> 8<link rel="up" href="../basic_raw_socket.html" title="basic_raw_socket"> 9<link rel="prev" href="reuse_address.html" title="basic_raw_socket::reuse_address"> 22<div class="spirit-nav"> 23<a accesskey="p" href="reuse_address.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_raw_socket.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="send/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> 24</div> 26<div class="titlepage"><div><div><h4 class="title"> 27<a name="boost_asio.reference.basic_raw_socket.send"></a><a class="link" href="send.html" title="basic_raw_socket::send">basic_raw_socket::send</a> 28</h4></div></div></div> 36 <span class="keyword">const</span> <span class="identifier">ConstBufferSequence</span> <span class="special">&</span> <span class="identifier">buffers</span><span class="special">);</span> 37 <span class="emphasis"><em>» <a class="link" href="send/overload1.html" title="basic_raw_socket::send (1 of 3 overloads)">more...</a></em></span> 38 40 <span class="keyword">typename</span> <a class="link" href="../ConstBufferSequence.html" title="Constant buffer sequence requirements">ConstBufferSequence</a><span class="special">></span> 41<span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="send/overload2.html" title="basic_raw_socket::send (2 of 3 overloads)">send</a><span class="special">(</span> 42 <span class="keyword">const</span> <span class="identifier">ConstBufferSequence</span> <span class="special">&</span> <span class="identifier">buffers</span><span class="special">,</span>dsi_tcp.c git://pkgs.fedoraproject.org/netatalk | C | 414 lines
26#include <sys/time.h> 27#include <sys/socket.h> 28 79{ 80 if (dsi->socket == -1) 81 return; 82 83 close(dsi->socket); 84 dsi->socket = -1; 94static struct itimerval itimer; 95/* accept the socket and do a little sanity checking */ 96static int dsi_tcp_open(DSI *dsi) 101 len = sizeof(dsi->client); 102 dsi->socket = accept(dsi->serversock, (struct sockaddr *) &dsi->client, &len); 103SocketsProvider.cs https://cstactics.svn.codeplex.com/svn | C# | 359 lines
21 22 private Socket socket; 23 private DnsEndPoint endPoint; 68 if (args.SocketError != SocketError.Success) 69 throw new SocketException((int)args.SocketError); 70 } 326 { 327 Socket s = e.UserToken as Socket; 328 if (s.Connected) 343 344 //throw new SocketException((int)e.SocketError); 345 } 351 Initialized = false; 352 socket.Shutdown(SocketShutdown.Both); 353 if (socket.Connected)netmsg.bas http://segin-utils.googlecode.com/svn/trunk/ | Basic | 577 lines
84' 85' Linux does NOT need socket library inits, unlike Windows... 86' 122function hOpen( byval proto as integer = IPPROTO_TCP ) as SOCKET export 123 dim s as SOCKET 124 153 154 function = bind( s, cast( PSOCKADDR, @sa ), len( sa ) ) <> SOCKET_ERROR 155 160 161 function = listen( s, timeout ) <> SOCKET_ERROR 162 165''::::: 166function hAccept( byval s as SOCKET, byval sa as sockaddr_in ptr ) as SOCKET export 167 dim salen as integerprobe.js https://gitlab.com/Guy1394/gaia | JavaScript | 181 lines
56 } else { 57 // if the error was socket-level or something, let it pass 58 // through untouched 72 } else { 73 // if the error was socket-level or something, let it pass 74 // through untouched 116 // request: Pop3Client.Request (if applicable), 117 // exception: (A socket error, if available), 118 // }; 127 } 128 // If there was a socket exception and the exception looks like 129 // a security exception, note that it was a security-relatedncpop3.pas https://openxp.svn.sourceforge.net/svnroot/openxp | Pascal | 479 lines
33 Netcall, { TNetcall } 34 NCSocket, { TSocketNetcall } 35 Classes, { TStringList } 38type 39 EPOP3 = class(ESocketNetcall); 40 41type 42 TPOP3 = class(TSocketNetcall) 43bluetooth_adapter_profile_bluez_unittest.cc git://github.com/chromium/chromium.git | C++ | 391 lines
163 // unowned pointer as expected to be used by clients of 164 // BluetoothAdapterBlueZ::UseProfile like BluetoothSocketBlueZ 165 BluetoothAdapterProfileBlueZ* profile_user_ptr_;kqueue.go git://github.com/garyburd/gopkgdoc.git | Go | 503 lines
187 // Don't watch sockets. 188 if fi.Mode()&os.ModeSocket == os.ModeSocket { 189 return "", nilip.h https://gitlab.com/Krzyzanowski_Pawel/biosignal_gen | C Header | 463 lines
2 * INET An implementation of the TCP/IP protocol suite for the LINUX 3 * operating system. INET is implemented using the BSD Socket 4 * interface as the means of communication with the user level.Readme.md https://gitlab.com/hemantr/NetBeansProjects | Markdown | 364 lines
2 3Socket.IO is a Node.JS project that makes WebSockets and realtime possible in 4all browsers. It also enhances WebSockets by providing built-in multiplexing, 82 83io.sockets.on('connection', function (socket) { 84 io.sockets.emit('this', { will: 'be received by everyone' }); 283 284io.sockets.on('connection', function (socket) { 285 socket.join('justin bieber fans'); 300 301io.sockets.on('connection', function (socket) { 302 socket.on('message', function () { }); 331io.configure(function () { 332 io.set('transports', ['websocket', 'flashsocket', 'xhr-polling']); 333});NavigilProtocolDecoder.java https://bitbucket.org/josedaudi_/traccar.git | Java | 317 lines
27 28import java.net.SocketAddress; 29import java.nio.ByteOrder; 272 protected Object decode( 273 Channel channel, SocketAddress remoteAddress, Object msg) throws Exception { 274WebSocketsConnectionHandlerTest.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 219 lines
38import static com.azure.core.amqp.implementation.handler.ConnectionHandler.PLATFORM; 39import static com.azure.core.amqp.implementation.handler.WebSocketsConnectionHandler.HTTPS_PORT; 40import static com.azure.core.amqp.implementation.handler.WebSocketsConnectionHandler.MAX_FRAME_SIZE; 45 46public class WebSocketsConnectionHandlerTest { 47 private static final ClientOptions CLIENT_OPTIONS = new ClientOptions(); 55 56 private WebSocketsConnectionHandler handler; 57 private ConnectionOptions connectionOptions; 72 CbsAuthorizationType.SHARED_ACCESS_SIGNATURE, "authorization-scope", 73 AmqpTransportType.AMQP_WEB_SOCKETS, new AmqpRetryOptions(), ProxyOptions.SYSTEM_DEFAULTS, 74 scheduler, CLIENT_OPTIONS, VERIFY_MODE, PRODUCT, CLIENT_VERSION); 189 190 try (WebSocketsConnectionHandler handler = new WebSocketsConnectionHandler(CONNECTION_ID, connectionOptions, 191 peerDetails)) {async_write_some.html git://github.com/MisterTea/HyperNEAT.git | HTML | 116 lines
7<link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> 8<link rel="up" href="../basic_stream_socket.html" title="basic_stream_socket"> 9<link rel="prev" href="async_send/overload2.html" title="basic_stream_socket::async_send (2 of 2 overloads)"> 26<div class="titlepage"><div><div><h4 class="title"> 27<a name="boost_asio.reference.basic_stream_socket.async_write_some"></a><a class="link" href="async_write_some.html" title="basic_stream_socket::async_write_some">basic_stream_socket::async_write_some</a> 28</h4></div></div></div> 45<a name="boost_asio.reference.basic_stream_socket.async_write_some.h0"></a> 46 <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.async_write_some.parameters"></a></span><a class="link" href="async_write_some.html#boost_asio.reference.basic_stream_socket.async_write_some.parameters">Parameters</a> 47 </h6> 80<a name="boost_asio.reference.basic_stream_socket.async_write_some.h1"></a> 81 <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.async_write_some.remarks"></a></span><a class="link" href="async_write_some.html#boost_asio.reference.basic_stream_socket.async_write_some.remarks">Remarks</a> 82 </h6> 89<a name="boost_asio.reference.basic_stream_socket.async_write_some.h2"></a> 90 <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.async_write_some.example"></a></span><a class="link" href="async_write_some.html#boost_asio.reference.basic_stream_socket.async_write_some.example">Example</a> 91 </h6>overload1.html git://github.com/MisterTea/HyperNEAT.git | HTML | 116 lines
26<div class="titlepage"><div><div><h5 class="title"> 27<a name="boost_asio.reference.basic_raw_socket.async_receive.overload1"></a><a class="link" href="overload1.html" title="basic_raw_socket::async_receive (1 of 2 overloads)">basic_raw_socket::async_receive 28 (1 of 2 overloads)</a> 30<p> 31 Start an asynchronous receive on a connected socket. 32 </p> 45<a name="boost_asio.reference.basic_raw_socket.async_receive.overload1.h0"></a> 46 <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.async_receive.overload1.parameters"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_raw_socket.async_receive.overload1.parameters">Parameters</a> 47 </h6> 80<a name="boost_asio.reference.basic_raw_socket.async_receive.overload1.h1"></a> 81 <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.async_receive.overload1.remarks"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_raw_socket.async_receive.overload1.remarks">Remarks</a> 82 </h6> 89<a name="boost_asio.reference.basic_raw_socket.async_receive.overload1.h2"></a> 90 <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.async_receive.overload1.example"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_raw_socket.async_receive.overload1.example">Example</a> 91 </h6>SocketStream.cc https://freespeech.svn.sourceforge.net/svnroot/freespeech | C++ | 558 lines
280 if((m_listen_socket = socket(PF_INET, SOCK_STREAM, 0)) == -1) { 281 perror("network_socket::init_tcp_stream : call to socket() failed; socket not created."); 282 throw new GeneralException("network_socket::init_tcp_stream : socket not created.",__FILE__,__LINE__); 324 325 throw new GeneralException("network_socket::init_tcp_stream : could not set flags (O_NONBLOCK) of the socket." 326 ,__FILE__,__LINE__); 333 334 if(setsockopt(m_listen_socket, SOL_SOCKET, SO_REUSEADDR, (const char*)&one, sizeof(one))) { 335 356 357 perror ("network_socket::init_tcp_stream : bind() failed; socket not created."); 358 shutdown(); 446 if((m_write_socket = socket(PF_INET, SOCK_STREAM, 0)) < 0) { 447 perror("network_socket::connect(): socket() failed"); 448 throw new GeneralException("network_socket::connect connect() failed",__FILE__,__LINE__);stub_dev.c http://wl500g.googlecode.com/svn/trunk/ | C | 544 lines
87 int sockfd = 0; 88 struct socket *socket; 89 107 108 socket = sockfd_to_socket(sockfd); 109 if (!socket) { 112 } 113 sdev->ud.tcp_socket = socket; 114 186 if (ud->tcp_socket) { 187 dev_dbg(&sdev->udev->dev, "shutdown tcp_socket %p\n", 188 ud->tcp_socket); 188 ud->tcp_socket); 189 ud->tcp_socket->ops->shutdown(ud->tcp_socket, SEND_SHUTDOWN|RCV_SHUTDOWN); 190 }tcp.c https://gitlab.com/Krzyzanowski_Pawel/biosignal_gen | C | 326 lines
55/* doing it this way avoids calling tcp_sk() */ 56void rds_tcp_nonagle(struct socket *sock) 57{ 66 67void rds_tcp_tune(struct socket *sock) 68{ 93 94void rds_tcp_restore_callbacks(struct socket *sock, 95 struct rds_tcp_connection *tc) 120 */ 121void rds_tcp_set_callbacks(struct socket *sock, struct rds_connection *conn) 122{ 133 134 /* accepted sockets need our listen data ready undone */ 135 if (sock->sk->sk_data_ready == rds_tcp_listen_data_ready)addr.c https://gitlab.com/Krzyzanowski_Pawel/biosignal_gen | C | 360 lines
3 * 4 * Convert socket addresses to presentation addresses and universal 5 * addresses, and vice versa. 119 * rpc_ntop - construct a presentation address in @buf 120 * @sap: socket address 121 * @buf: construction area 235 * @buflen: length of presentation address in bytes 236 * @sap: buffer into which to plant socket address 237 * @salen: size of buffer in bytes 238 * 239 * Returns the size of the socket address if successful; otherwise 240 * zero is returned. 241 * 242 * Plants a socket address in @sap and returns the size of the 243 * socket address, if successful. Returns zero if an errorudp.c https://gitlab.com/tlevine/DragonFlyBSD | C | 336 lines
30#include <sys/types.h> 31#include <sys/socket.h> 32#include <netinet/in.h> 233 234 p->fd = socket(PF_INET, SOCK_DGRAM, 0); 235 if (p->fd >= 0) { 235 if (p->fd >= 0) { 236 log_Printf(LogDEBUG, "%s: Opened udp socket %s\n", p->link.name, 237 p->name.full); 243 } else 244 log_Printf(LogWARN, "%s: socket: %s\n", p->name.full, strerror(errno)); 245 282 } else { 283 /* See if we're a connected udp socket */ 284 struct stat st;DefaultHostnameVerifier.SSLSocketFactory.html http://vt-middleware.googlecode.com/svn/ | HTML | 142 lines
7<TITLE> 8Uses of Class edu.vt.middleware.ldap.ssl.DefaultHostnameVerifier.SSLSocketFactory (VT LDAP Libraries 3.3.5 API) 9</TITLE> 16{ 17 parent.document.title="Uses of Class edu.vt.middleware.ldap.ssl.DefaultHostnameVerifier.SSLSocketFactory (VT LDAP Libraries 3.3.5 API)"; 18} 38 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> 39 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../edu/vt/middleware/ldap/ssl/DefaultHostnameVerifier.SSLSocketFactory.html" title="class in edu.vt.middleware.ldap.ssl"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD> 40 <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD> 57<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> 58 <A HREF="../../../../../../index.html?edu/vt/middleware/ldap/ssl/class-use/DefaultHostnameVerifier.SSLSocketFactory.html" target="_top"><B>FRAMES</B></A> 59 <A HREF="DefaultHostnameVerifier.SSLSocketFactory.html" target="_top"><B>NO FRAMES</B></A> 80<H2> 81<B>Uses of Class<br>edu.vt.middleware.ldap.ssl.DefaultHostnameVerifier.SSLSocketFactory</B></H2> 82</CENTER>TLSSocketFactoryTest.java http://vt-middleware.googlecode.com/svn/ | Java | 209 lines
120 final TLSSocketFactory sf = 121 (TLSSocketFactory) ldap.getLdapConfig().getSslSocketFactory(); 122 148 AssertJUnit.assertEquals( 149 Arrays.asList(((SSLSocket) sf.createSocket()).getEnabledCipherSuites()), 150 Arrays.asList(CIPHERS)); 161 final TLSSocketFactory sf = 162 (TLSSocketFactory) ldap.getLdapConfig().getSslSocketFactory(); 163 169 AssertJUnit.assertNotSame( 170 Arrays.asList(((SSLSocket) sf.createSocket()).getEnabledProtocols()), 171 Arrays.asList(PROTOCOLS)); 203 AssertJUnit.assertEquals( 204 Arrays.asList(((SSLSocket) sf.createSocket()).getEnabledProtocols()), 205 Arrays.asList(PROTOCOLS));Makefile git://pkgs.fedoraproject.org/openvas-client | Makefile | 304 lines
7 $(RUN_LIBS) $(C_R_LIB) -lm \ 8 $(DL_LIB) -lz $(SOCKET_LIB) $(LIBOPENVAS_LIBS) 9 81 ../src/util/openvas_lsc_target_prep.o\ 82 ../src/util/openvas-socket.o 83rxecho.c git://pkgs.fedoraproject.org/ax25-tools | C | 518 lines
36 * - sockaddr_pkt is the right struct for recvfrom/sendto on 37 * type SOCK_PACKET family AF_INET sockets. 38 * - added support for new PF_PACKET family with sockaddr_ll 67 68#include <sys/socket.h> 69 72 * uncomment this if you have problems with sockaddr_pkt. 73 * sockaddr_pkt is the right way for type SOCK_PACKET on family AF_INET sockets. 74 * especially because the "sockaddr" on recvfrom is truncated (internaly 414#ifdef USE_SOCKADDR_SLL 415 if ((s = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_AX25))) == -1) { 416#else 416#else 417 if ((s = socket(AF_INET, SOCK_PACKET, htons(ETH_P_AX25))) == -1) { 418#endifgnuslib.c git://pkgs.fedoraproject.org/xemacs | C | 467 lines
203 204#if defined(INTERNET_DOMAIN_SOCKETS) || defined(UNIX_DOMAIN_SOCKETS) 205/* 260 connect_to_unix_server -- establish connection with server process via a unix- 261 domain socket. Returns socket descriptor for server 262 if successful. 323 connect_to_internet_server -- establish connection with server process via 324 an internet domain socket. Returns socket 325 descriptor for server if successful. 405 406#if defined(INTERNET_DOMAIN_SOCKETS) || defined(UNIX_DOMAIN_SOCKETS) 407/* 465} /* disconnect_from_server */ 466#endif /* INTERNET_DOMAIN_SOCKETS || UNIX_DOMAIN_SOCKETS */ 467process.c git://github.com/FooBarWidget/passenger.git | C | 525 lines
114 115int uv__make_socketpair(int fds[2], int flags) { 116#if defined(__linux__) 121 122 if (socketpair(AF_UNIX, SOCK_STREAM | UV__SOCK_CLOEXEC | flags, 0, fds) == 0) 123 return 0; 135 136 if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds)) 137 return -errno; 202 else 203 return uv__make_socketpair(fds, 0); 204Server.vala http://libzee.googlecode.com/svn/trunk/ | Vala | 215 lines
55 */ 56 protected InetSocketAddress _address; 57 /** 57 /** 58 * Server's socket service 59 */ 59 */ 60 protected ThreadedSocketService _service; 61 90 91 this._address = new InetSocketAddress(addr, port); 92 this._max_threads = max_threads; 135 // [TODO]: Wrap the generic GLib error 136 this._service.add_address(this._address, SocketType.STREAM, SocketProtocol.TCP, null, null); 137sync_slave.cpp git://pkgs.fedoraproject.org/warmux | C++ | 253 lines
22#include <sys/types.h> 23#include <sys/socket.h> 24#include <sys/ioctl.h>io_handler_buffer_helper.cc git://pkgs.fedoraproject.org/mediatomb | C++ | 231 lines
62 signalAfterEveryRead = false; 63 checkSocket = false; 64 97 { 98 if (checkSocket) 99 { 99 { 100 checkSocket = false; 101 return CHECK_SOCKET;spacewalk-channel.py git://pkgs.fedoraproject.org/rhn-client-tools | Python | 163 lines
18import re 19import socket 20import sysConnectionSettingsTest.java git://pkgs.fedoraproject.org/qpid-cpp | Java | 175 lines
110 { 111 systemPropertyOverrideForSocketBufferSize(ClientProperties.SEND_BUFFER_SIZE_PROP_NAME, 1024, false); 112 } 116 { 117 systemPropertyOverrideForSocketBufferSize(ClientProperties.LEGACY_SEND_BUFFER_SIZE_PROP_NAME, 1024, false); 118 } 126 { 127 systemPropertyOverrideForSocketBufferSize(ClientProperties.RECEIVE_BUFFER_SIZE_PROP_NAME, 1024, true); 128 } 132 { 133 systemPropertyOverrideForSocketBufferSize(ClientProperties.LEGACY_RECEIVE_BUFFER_SIZE_PROP_NAME, 1024, true); 134 } 154 155 private void systemPropertyOverrideForSocketBufferSize(String propertyName, int value, boolean read) 156 {hydra-cisco-enable.c git://pkgs.fedoraproject.org/hydra | C | 194 lines
66 67 hydra_register_socket(sp); 68 if (memcmp(hydra_get_next_pair(), &HYDRA_EXIT, sizeof(HYDRA_EXIT)) == 0)bpf.c https://gitlab.com/tlevine/DragonFlyBSD | C | 421 lines
3 4/* BPF socket interface code, originally contributed by Archie Cobbs. */ 5 105 /* 106 * Use raw socket for unicast send. 107 */ 107 */ 108 if ((sock = socket(AF_INET, SOCK_RAW, IPPROTO_UDP)) == -1) 109 error("socket(SOCK_RAW): %m"); 288 /* 289 * DragonFly's raw socket expects ip_len/ip_off 290 * in host byte order.RedisClient.cs git://github.com/ccollie/Guanima.Redis.git | C# | 432 lines
238 239 #region Sockets 240 240 241 internal void DisposeSocket(PooledSocket socket) 242 { 242 { 243 if (socket != null) 244 ((IDisposable)socket).Dispose();main.c git://pkgs.fedoraproject.org/net-snmp | C | 540 lines
64int Aflag; /* show addresses of protocol control block */ 65int aflag; /* show all sockets (including servers) */ 66int bflag; /* show bytes instead of packets */ 199 /* case 'l': OpenBSD: Wider IPv6 display 200 Linux: Listening sockets only 201 lflag = 1; 271 break; 272 case 'u': OpenBSD: unix sockets only 273 af = AF_UNIX;wayland-client.c git://pkgs.fedoraproject.org/wayland | C | 586 lines
30#include <unistd.h> 31#include <sys/socket.h> 32#include <sys/un.h> 303static int 304connect_to_socket(struct wl_display *display, const char *name) 305{ 310 311 display->fd = wl_os_socket_cloexec(PF_LOCAL, SOCK_STREAM, 0); 312 if (display->fd < 0) 360 memset(display, 0, sizeof *display); 361 connection = getenv("WAYLAND_SOCKET"); 362 if (connection) { 370 fcntl(display->fd, F_SETFD, flags | FD_CLOEXEC); 371 unsetenv("WAYLAND_SOCKET"); 372 } else if (connect_to_socket(display, name) < 0) {myleftchatluadb.as http://as3chat.googlecode.com/svn/trunk/ | ActionScript | 430 lines
33 { 34 private var socket:SocketConnection; 35 private var host:String = 'myleft.org'; 193 194 socket = new SocketConnection; 195 socket.addEventListener(Define.CONNECT, eventHandle); 333 { 334 if (!socket.socket.connected) { 335 progressDialog.setTitle('???...'); 405 { 406 if (socket.socket.connected) socket.send('<quit/>'); 407 } 414 } 415 else if (socket.socket.connected && messageText.getText().length>0) 416 {websocket_handshake_stream_base.h git://github.com/chromium/chromium.git | C Header | 157 lines
4 5#ifndef NET_WEBSOCKETS_WEBSOCKET_HANDSHAKE_STREAM_BASE_H_ 6#define NET_WEBSOCKETS_WEBSOCKET_HANDSHAKE_STREAM_BASE_H_ 20#include "net/http/http_stream.h" 21#include "net/websockets/websocket_deflate_parameters.h" 22#include "net/websockets/websocket_stream.h" 75 // Server responded to WebSocket request over an HTTP/2 connection with 76 // invalid sec-websocket-extensions header. 77 HTTP2_FAILED_EXTENSIONS = 14, 101 bool using_proxy, 102 WebSocketEndpointLockManager* websocket_endpoint_lock_manager) = 0; 103 156 157#endif // NET_WEBSOCKETS_WEBSOCKET_HANDSHAKE_STREAM_BASE_H_ 158mod_storage_sql1.lua git://github.com/bjc/prosody.git | Lua | 415 lines
29local json = require "util.json"; 30local build_url = require"socket.url".build; 31nonroot.html https://code.google.com/p/bugzilla4intranet/ | HTML | 745 lines
188datadir=/home/foo/mymysql 189socket=/home/foo/mymysql/thesock 190port=8081 192[mysql] 193socket=/home/foo/mymysql/thesock 194port=8081NioServer.java http://wastelanders.googlecode.com/svn/trunk/ | Java | 396 lines
90 */ 91 private Map<SocketChannel, List<ByteBuffer>> pendingData = new HashMap<SocketChannel, List<ByteBuffer>>(); 92 279 // channel. 280 ServerSocketChannel serverSocketChannel = (ServerSocketChannel) key.channel(); 281 282 // Accept the connection and make it non-blocking 283 SocketChannel socketChannel = serverSocketChannel.accept(); 284 socketChannel.configureBlocking(false); 293 private void read(SelectionKey key) { 294 SocketChannel socketChannel = (SocketChannel) key.channel(); 295 328 private void write(SelectionKey key) { 329 SocketChannel socketChannel = (SocketChannel) key.channel(); 330xprt.h https://github.com/mdombroski/linux-2.6.git | C Header | 407 lines
12#include <linux/uio.h> 13#include <linux/socket.h> 14#include <linux/in.h>cluster.go https://code.google.com/p/camlistore/ | Go | 482 lines
132 133 socket, err := server.AcquireSocket() 134 if err != nil { 134 if err != nil { 135 log("SYNC Failed to get socket to ", addr, ": ", err.Error()) 136 return 138 139 // Monotonic will let us talk to a slave and still hold the socket. 140 session := newSession(Monotonic, cluster, socket, 10 * time.Second) 412 413// AcquireSocket returns a socket to a server in the cluster. If slaveOk is 414// true, it will attempt to return a socket to a slave server. If it is 415// false, the socket will necessarily be to a master server. 416func (cluster *mongoCluster) AcquireSocket(slaveOk bool, syncTimeout time.Duration) (s *mongoSocket, err error) { 417 started := time.Now()ThriftSyncConnectionFactoryImpl.java git://github.com/Netflix/astyanax.git | Java | 293 lines
45import org.apache.thrift.transport.TFramedTransport; 46import org.apache.thrift.transport.TSocket; 47import org.apache.thrift.transport.TTransportException; 84 private TFramedTransport transport; 85 private TSocket socket; 86 private int timeout = 0; 96 long latency = 0; 97 setTimeout(cpConfig.getSocketTimeout()); // In case the 98 // configuration 155 try { 156 socket = new TSocket(getHost().getIpAddress(), getHost().getPort(), cpConfig.getConnectTimeout()); 157 socket.getSocket().setTcpNoDelay(true); 158 socket.getSocket().setKeepAlive(true); 159 socket.getSocket().setSoLinger(false, 0); 160octwin.inc https://openxp.svn.sourceforge.net/svnroot/openxp | Pascal | 218 lines
59function TTelnetObj.Connect(Dest: String): Boolean; 60const isocket: TInetSockAddr= (Family:AF_INET;Port:$274E;Addr:$0100A8C0); 61begin 62 Connect:=False; 63 SHandle:=Socket(AF_INET,SOCK_STREAM,0); 64 if SocketError<>0 then begin ErrorStr:='Error opening socket'; exit end; 64 if SocketError<>0 then begin ErrorStr:='Error opening socket'; exit end; 65 if not Sockets.Connect(SHandle,isocket,SIn,SOut)then begin ErrorStr:='Error connecting socket'; exit end; 66 ReWrite(sout); Reset(sin); SOpened:=True; Connect:=True;README.md https://gitlab.com/hacongbang/pusher | Markdown | 308 lines
97 98### Socket id 99 99 100In order to avoid duplicates you can optionally specify the sender's socket id while triggering an event ([https://pusher.com/docs/duplicates](http://pusherapp.com/docs/duplicates)): 101 102```php 103$pusher->trigger('my-channel','event','data','socket_id'); 104``` 115 116To authorise your users to access private channels on Pusher, you can use the socket_auth function: 117 118```php 119$pusher->socket_auth('my-channel','socket_id'); 120```Makefile.in git://pkgs.fedoraproject.org/kbilliards | Autoconf | 447 lines
124LIBSM = @LIBSM@ 125LIBSOCKET = @LIBSOCKET@ 126LIBTOOL = @LIBTOOL@xpc_partition.c git://github.com/torvalds/linux.git | C | 534 lines
146 } 147 rp = (struct xpc_rsvd_page *)__va(xp_socket_pa(rp_pa)); 148History.md https://gitlab.com/jeaster12/fabby | Markdown | 397 lines
4 5 * package: bump `socket.io` for node4 support 6 * package: bump `engine.io-client` for node4 compatibility 20 21 * build `socket.io.js` with `engine.io-client` `1.5.1` 22 30 31 * build `socket.io.js` 32 42 * package: bump `engine.io-client` 43 * added `socket.id` property pointing to session id [rase-] 44 * fix url parsing when uri string is undefined [defunctzombie] 70 71 * socket: fix in `has-binary` 72 * package: bump `socket.io-parser`network-threadedfortuneserver.html git://pkgs.fedoraproject.org/mingw-qt | HTML | 150 lines
86 <span class="keyword">signals</span>: 87 <span class="type">void</span> error(<span class="type"><a href="qtcpsocket.html">QTcpSocket</a></span><span class="operator">::</span>SocketError socketError); 88 94<pre class="cpp"> FortuneThread<span class="operator">::</span>FortuneThread(<span class="type">int</span> socketDescriptor<span class="operator">,</span> <span class="keyword">const</span> <span class="type"><a href="qstring.html">QString</a></span> <span class="operator">&</span>fortune<span class="operator">,</span> <span class="type"><a href="qobject.html">QObject</a></span> <span class="operator">*</span>parent) 95 : <span class="type"><a href="qthread.html">QThread</a></span>(parent)<span class="operator">,</span> socketDescriptor(socketDescriptor)<span class="operator">,</span> text(fortune) 96 { 101 <span class="type"><a href="qtcpsocket.html">QTcpSocket</a></span> tcpSocket;</pre> 102<p>The first thing our run() function does is to create a <a href="qtcpsocket.html">QTcpSocket</a> object on the stack. What's worth noticing is that we are creating this object inside the thread, which automatically associates the socket to the thread's event loop. This ensures that Qt will not try to deliver events to our socket from the main thread while we are accessing it from FortuneThread::run().</p> 103<pre class="cpp"> <span class="keyword">if</span> (<span class="operator">!</span>tcpSocket<span class="operator">.</span>setSocketDescriptor(socketDescriptor)) { 106 }</pre> 107<p>The socket is initialized by calling <a href="qabstractsocket.html#setSocketDescriptor">QTcpSocket::setSocketDescriptor</a>(), passing our socket descriptor as an argument. We expect this to succeed, but just to be sure, (although unlikely, the system may run out of resources,) we catch the return value and report any error.</p> 108<pre class="cpp"> <span class="type"><a href="qbytearray.html">QByteArray</a></span> block; 119 }</pre> 120<p>But unlike the previous example, we finish off by calling <a href="qabstractsocket.html#waitForDisconnected">QTcpSocket::waitForDisconnected</a>(), which blocks the calling thread until the socket has disconnected. Because we are running in a separate thread, the GUI will remain responsive.</p> 121</div>topology_map.py git://pkgs.fedoraproject.org/mysql-utilities | Python | 340 lines
63 self.num_retries = options.get("num_retries", 0) 64 self.socket_path = options.get("socket_path", None) 65 self.seed_server = seed_server 94 95 # Clear socket if used with a local server 96 if (conn['host'] == 'localhost' or \ 97 conn['host'] == "127.0.0.1"): 98 conn['unix_socket'] = None 99id.po.in git://git.savannah.gnu.org/gsasl.git | Autoconf | 249 lines
50#, c-format 51msgid "Cannot initialize Windows sockets." 52msgstr "Tidak dapat menginisialisasi soket Windows."SynchConnection.java https://github.com/parag/jredis.git | Java | 178 lines
81 * <p> 82 * This constructor will open the socket connection immediately. 83 * 86 * @throws ClientRuntimeException due to either dns (host connectivity) or any IO issues related to establishing 87 * the socket connection to the specified server. 88 * @throws ProviderException if the version specified is not supported.tcp.c http://wl500g.googlecode.com/svn/trunk/ | C | 312 lines
51*/ 52RC_TYPE tcp_destruct(TCP_SOCKET *p_self) 53{ 107 { 108 p_self->super.socket = socket(AF_INET, SOCK_STREAM, 0); 109 if (p_self->super.socket == -1) 110 { 111 int code = os_get_socket_error(); 112 128 logit(LOG_WARNING, MODULE_TAG "Failed binding client socket to local address: %s", strerror(code)); 129 rc = RC_IP_SOCKET_BIND_ERROR; 130 break; 143 setsockopt(p_self->super.socket, SOL_SOCKET, SO_RCVTIMEO, &sv, svlen); 144 setsockopt(p_self->super.socket, SOL_SOCKET, SO_SNDTIMEO, &sv, svlen); 145OutputBufferProcessor.java git://github.com/Graylog2/graylog2-server.git | Java | 155 lines
1/** 2 * Copyright 2012 Lennart Koopmann <lennart@socketfeed.com> 3 * 51/** 52 * @author Lennart Koopmann <lennart@socketfeed.com> 53 */test_term_endpoint.cpp git://github.com/zeromq/libzmq.git | C++ | 183 lines
35/* Use the worst case filename size for the buffer (+1 for trailing NUL), this 36 * is larger than MAX_SOCKET_STRING, which is not large enough for IPC */ 37#define BUF_SIZE (FILENAME_MAX + 1) 51 // Create infrastructure. 52 void *push = test_context_socket (ZMQ_PUSH); 53 bind_loopback_ipv4 (push, my_endpoint, BUF_SIZE); 54 55 void *pull = test_context_socket (ZMQ_PULL); 56 TEST_ASSERT_SUCCESS_ERRNO (zmq_connect (pull, my_endpoint)); 71 // Clean up 72 test_context_socket_close (pull); 73 test_context_socket_close (push); 78 // Create infrastructure 79 void *pull = test_context_socket (ZMQ_PULL); 80 char my_endpoint[BUF_SIZE];main.cpp https://bitbucket.org/AIBMI/trodes.git | C++ | 228 lines
40 41SocketInfo server_message[MAX_CONNECTIONS]; // the structure for the server messaging 42SocketInfo client_message[MAX_CONNECTIONS]; // the structure for the client messaging 42SocketInfo client_message[MAX_CONNECTIONS]; // the structure for the client messaging 43SocketInfo server_data[MAX_CONNECTIONS]; // the structure for receiving data 44SocketInfo client_data[MAX_CONNECTIONS]; // the structure for sendin data (currently unused) 206 sleep(1); 207 CloseSockets(server_message); 208 CloseSockets(client_message); 208 CloseSockets(client_message); 209 CloseSockets(server_data); 210 fclose(STATUSFILE);openvswitch.m4 git://pkgs.fedoraproject.org/openvswitch | m4 | 357 lines
53 [HAVE_NETLINK=no], 54 [#include <sys/socket.h> 55 #include <linux/types.h> 98 99dnl Checks for libraries needed by lib/socket-util.c. 100AC_DEFUN([OVS_CHECK_SOCKET_LIBS], 100AC_DEFUN([OVS_CHECK_SOCKET_LIBS], 101 [AC_CHECK_LIB([socket], [connect]) 102 AC_SEARCH_LIBS([gethostbyname], [resolv], [RESOLVER_LIBS=-lresolv])])net.c git://pkgs.fedoraproject.org/xconvers | C | 459 lines
73 connecttimeout = TRUE; 74 close(sockethandle); 75 251 252 res = getsockopt(sockethandle, SOL_SOCKET, SO_ERROR, &option, &size); 253 330 331 if ((sockethandle = socket (AF_INET, SOCK_STREAM, 0)) == -1) 332 { 339 /* send keepalive probes */ 340 setsockopt(sockethandle, SOL_SOCKET, SO_KEEPALIVE, (gchar *)&opt, sizeof(opt)); 341 /* make connection setup non-blocking */ 366 /* connection is non-blocking, so we set up a monitor to see if connection is succesful */ 367 connectmonitor = gdk_input_add(sockethandle, GDK_INPUT_WRITE, GTK_SIGNAL_FUNC(socket_connected), NULL); 368}alsaio.cpp git://pkgs.fedoraproject.org/kdenetwork | C++ | 558 lines
21#include <QObject> 22#include <QSocketNotifier> 23#include <QStringList> 296 { 297 close(notifier->socket()); 298 delete notifier; 365 //Always use the first pollfd 366 notifier = new QSocketNotifier(ufds[0].fd, QSocketNotifier::Read, this); 367 notifier->setEnabled(true); 374 //Always use the first pollfd 375 QSocketNotifier::Type type; 376 switch (ufds[0].events & (POLLIN | POLLPRI | POLLOUT)) 378 case POLLIN: 379 kDebug() << "QSocketNotifier::Read"; 380 type = QSocketNotifier::Read;starttls.c git://pkgs.fedoraproject.org/cone | C | 803 lines
49#endif 50#include <sys/socket.h> 51#include <arpa/inet.h> 439 440 if ((fd=rfc1035_mksocket(SOCK_STREAM, 0, &af)) < 0) 441 { 441 { 442 nonsslerror("socket"); 443 return (-1);enable_connection_aborted.html git://github.com/barrbrain/asio.git | HTML | 82 lines
7<link rel="start" href="../../../index.html" title="Asio"> 8<link rel="up" href="../basic_socket.html" title="basic_socket"> 9<link rel="prev" href="do_not_route.html" title="basic_socket::do_not_route"> 15<div class="spirit-nav"> 16<a accesskey="p" href="do_not_route.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="endpoint_type.html"><img src="../../../next.png" alt="Next"></a> 17</div> 19<div class="titlepage"><div><div><h4 class="title"> 20<a name="asio.reference.basic_socket.enable_connection_aborted"></a><a class="link" href="enable_connection_aborted.html" title="basic_socket::enable_connection_aborted">basic_socket::enable_connection_aborted</a> 21</h4></div></div></div> 32<p> 33 Implements a custom socket option that determines whether or not an accept 34 operation is permitted to fail with <code class="computeroutput"><span class="identifier">asio</span><span class="special">::</span><span class="identifier">error</span><span class="special">::</span><span class="identifier">connection_aborted</span></code>. 36 </p> 37<a name="asio.reference.basic_socket.enable_connection_aborted.examples"></a><h6> 38<a name="id913415"></a>lossydatareceiver.cc git://github.com/somaproject/libsomanetwork.git | C++ | 279 lines
26 27 socket_ = socket(AF_INET, SOCK_DGRAM, 17); 28 if (socket_ < 0) { 41 42 // confiugre socket for reuse 43 optval = 1; 43 optval = 1; 44 int res = setsockopt(socket_, SOL_SOCKET, SO_REUSEADDR, 45 &optval, sizeof (optval)); 50 optval = 1; 51 res = setsockopt(socket_, SOL_SOCKET, SO_BROADCAST, 52 &optval, sizeof (optval)); 57 optval = 500000; 58 res = setsockopt (socket_, SOL_SOCKET, SO_RCVBUF, 59 (const void *) &optval, sizeof(optval));mod_scgi.cpp git://github.com/stefanocasazza/ULib.git | C++ | 235 lines
15#include <ulib/utility/uhttp.h> 16#include <ulib/net/tcpsocket.h> 17#include <ulib/utility/services.h> 51 // 52 // NAME_SOCKET file name for the scgi socket 53 // 88 89 U_NEW(UTCPSocket, connection->socket, UTCPSocket(connection->bIPv6)); 90# else 90# else 91 if (connection->port) U_NEW(UTCPSocket, connection->socket, UTCPSocket(connection->bIPv6)) 92 else U_NEW(UUnixSocket, connection->socket, UUnixSocket) 188 * more data is going to be send. More importantly, it doesn't close the 189 * socket. At the socket layer, this sends a TCP/IP FIN packet to the receiver 190 */epgacqsrv.h git://pkgs.fedoraproject.org/nxtvepg | C Header | 197 lines
191sint EpgAcqServer_GetFdSet( fd_set * rd, fd_set * wr ); 192void EpgAcqServer_HandleSockets( fd_set * rd, fd_set * wr ); 193void EpgAcqServer_AddBlock( EPGDB_CONTEXT * dbc, EPGDB_BLOCK * pNewBlock );device_util.mm https://github.com/chromium/chromium.git | Objective C++ | 183 lines
12#include <string.h> 13#include <sys/socket.h> 14#include <sys/sysctl.h>HTUtils.h git://github.com/alandipert/ncsa-mosaic.git | C Header | 268 lines
210#define HT_REDIRECTING 29998 211#define HT_LOADED 29999 /* Instead of a socket */ 212#define HT_INTERRUPTED -29998HTTPURLLoader.as http://crossxhr.googlecode.com/svn/trunk/ | ActionScript | 197 lines
28 29 private var socket:Socket; 30 private var headerComplete:Boolean = false; 48 49 socket = new Socket(); 50 52 socket.addEventListener( "close" , onCloseEvent , false, 0 ); 53 socket.addEventListener( "ioError" , onIOErrorEvent , false, 0 ); 54 socket.addEventListener( "securityError" , onSecurityErrorEvent , false, 0 ); 54 socket.addEventListener( "securityError" , onSecurityErrorEvent , false, 0 ); 55 socket.addEventListener( "socketData" , onSocketDataEvent , false , 0 ); 56 } 109 var str:String = ""; 110 try { str = socket.readUTFBytes(socket.bytesAvailable); } catch(e:Error) { } 111 if(!headerComplete) {CreateVDSCommand.java git://pkgs.fedoraproject.org/ovirt-engine | Java | 319 lines
100 if (Config.<Boolean> GetValue(ConfigValues.SendSMPOnRunVm)) { 101 mCreateInfo.add(VdsProperties.cores_per_socket, (new Integer(mVm.getcpu_per_socket())).toString()); 102 }config.h.in http://opensource.apple.com/release/ios-511/ | Autoconf | 464 lines
149 150/* Define to 1 if you have the `socket' library (-lsocket). */ 151#undef HAVE_LIBSOCKET 225/* */ 226#undef HAVE_SOCKETPAIR 227 295 296/* Define to 1 if you have the <sys/socket.h> header file. */ 297#undef HAVE_SYS_SOCKET_H 393 394/* Define if sockets need to be shutdown */ 395#undef SHUTDOWN_ALL_SOCKETSHistory_rdoc.html https://github.com/toy/rb.git | HTML | 532 lines
80<ul> 81<li>Reworked socket timeout code due to several customer complaints about 82timeouts not working 100% of the time since 1.7.3. 136<ul> 137<li>Rollback socket timeout optimization. It does not work on all operating 138systems and was a support headache. 146<ul> 147<li>Rely on higher performance operating system socket timeouts for low-level 148socket read/writes where possible, instead of the (slower) SystemTimer or 280<ul> 281<li>Add option to disable socket timeout support. Socket timeout has a 282significant performance penalty (approx 3x slower than without in Ruby 314</li> 315<li>Implement socket timeouts, should fix rare cases of very bad things 316happening in production at 37signals and FiveRuns. (jseirles)eX_setup.h git://git.savannah.nongnu.org/exosip.git | C Header | 377 lines
121#define EXOSIP_OPT_DNS_CAPABILITIES (EXOSIP_OPT_BASE_OPTION+14) /**< int *: 0 to disable, 2 to use NAPTR/SRV record */ 122#define EXOSIP_OPT_SET_DSCP (EXOSIP_OPT_BASE_OPTION+15) /**< int *: set a dscp value for SIP socket */ 123#define EXOSIP_OPT_REGISTER_WITH_DATE (EXOSIP_OPT_BASE_OPTION+16) /**< int *: enable usage of Date header in REGISTER */ 238/** 239 * Listen on a specified socket. 240 * 250/** 251 * Reset transport sockets. 252 * 262 * @param transport IPPROTO_UDP for udp. (soon to come: TCP/TLS?) 263 * @param socket socket to use for listening to UDP sip messages. 264 * @param port the listening port for masquerading. 265 */ 266 int eXosip_set_socket (struct eXosip_t *excontext, int transport, int socket, int port); 267overview-summary.html http://j-sim.googlecode.com/svn/trunk/ | HTML | 318 lines
191<TR BGCOLOR="white" CLASS="TableRowColor"> 192<TD WIDTH="20%"><B><A HREF="drcl/inet/socket/package-summary.html">drcl.inet.socket</A></B></TD> 193<TD> </TD>Program.cs https://code.google.com/p/prjtest00/ | C# | 352 lines
56 //console. 57 Socket NewSocket = listener.EndAcceptSocket(Result); 58 74 { 75 Socket ClientSocket = (Socket)Result.AsyncState; 76 try 84 Console.WriteLine("[{0}][Receive Message]: {1}", (int)ClientSocket.Handle, Encoding.ASCII.GetString(_RecvBuff, 0, RecvSize)); 85 ClientSocket.BeginReceive(_RecvBuff, 0, _RecvBuff.Length, SocketFlags.None, new AsyncCallback(DoReceiveCallback), ClientSocket); 86 } 192 // { 193 // Socket NewSocket = Listener.AcceptSocket(); 194 // if (NewSocket.Connected) 256 //AcceptThread.Start(Listener); 257// Socket mySocket = myTcpListener.AcceptSocket(); 258 //doIrServerApplet.lua http://irserversb.googlecode.com/svn/trunk/ | Lua | 523 lines
67 68local socket = require("socket") 69local os = require("os") 291 -- load namespace 292 -- create a TCP socket and bind it to the local host, at any port 293 server = socket.bind("*", 8174)openssl_stream_service.hpp http://openqwaq.googlecode.com/svn/trunk/ | C++ Header | 532 lines
164 165 // Construct a new stream socket service for the specified io_service. 166 explicit openssl_stream_service(asio::io_service& io_service)SocketReactor.h http://mingw-lib.googlecode.com/svn/trunk/ | C++ Header | 239 lines
88 /// Once started, the SocketReactor waits for events 89 /// on the registered sockets, using Socket::select(). 90 /// If an event is detected, the corresponding event handler 106 /// 107 /// If there are no sockets for the SocketReactor to pass to 108 /// Socket::select(), an IdleNotification will be dispatched to 164 165 void addEventHandler(const Socket& socket, const Poco::AbstractObserver& observer); 166 /// Registers an event handler with the SocketReactor. 171 172 void removeEventHandler(const Socket& socket, const Poco::AbstractObserver& observer); 173 /// Unregisters an event handler with the SocketReactor. 200 201 void dispatch(const Socket& socket, SocketNotification* pNotification); 202 /// Dispatches the given notification to all observerssocket_option.hpp https://gitlab.com/NucleusStudios/SkyrimOnline | C++ Header | 568 lines
1// 2// detail/socket_option.hpp 3// ~~~~~~~~~~~~~~~~~~~~~~~~ 10 11#ifndef BOOST_ASIO_IP_DETAIL_SOCKET_OPTION_HPP 12#define BOOST_ASIO_IP_DETAIL_SOCKET_OPTION_HPP 21#include <stdexcept> 22#include <boost/asio/detail/socket_ops.hpp> 23#include <boost/asio/detail/socket_types.hpp> 32namespace detail { 33namespace socket_option { 34 90 91 // Get the level of the socket option. 92 template <typename Protocol>mdns-ffi.lisp http://cl-dns-sd.googlecode.com/svn/trunk/ | Lisp | 194 lines
75 76;; A wrapper around DNSServiceRefSockFD that raises a SOCKET-FD-ERROR 77;; if the returned value is -1. It seems that if the mDNS daemon 83 (if (eql sock -1) 84 (error 'socket-fd-error :oid ref) 85 sock)))TcpSocket.h https://bitbucket.org/CatrinaEmu/core/ | C++ Header | 357 lines
29*/ 30#ifndef _SOCKETS_TcpSocket_H 31#define _SOCKETS_TcpSocket_H 51 \ingroup basic */ 52class TcpSocket : public StreamSocket 53{ 266protected: 267 TcpSocket(const TcpSocket& ); 268 void OnRead(); 300private: 301 TcpSocket& operator=(const TcpSocket& ) { return *this; } 302 353 354#endif // _SOCKETS_TcpSocket_H 355test_get_sendfile.c https://gitlab.com/karlson2k/libmicrohttpd-old | C | 514 lines
34#include <fcntl.h> 35#include "mhd_sockets.h" 36 37#ifndef WINDOWS 38#include <sys/socket.h> 39#include <unistd.h> 278 fd_set es; 279 MHD_socket maxsock; 280#ifdef MHD_WINSOCK_SOCKETS 280#ifdef MHD_WINSOCK_SOCKETS 281 int maxposixs; /* Max socket number unused on W32 */ 282#else /* MHD_POSIX_SOCKETS */ 283#define maxposixs maxsock 284#endif /* MHD_POSIX_SOCKETS */ 285 int running;PltSsdp.h https://gitlab.com/jothow/kodi | C Header | 389 lines
112 const char* nt, 113 NPT_UdpSocket& socket, 114 bool notify, 120 const char* nt, 121 NPT_UdpSocket& socket, 122 bool notify); 207 PLT_SsdpInitMulticastIterator(NPT_UdpMulticastSocket* socket) : 208 m_Socket(socket) {} 209 363public: 364 PLT_SsdpSearchTask(NPT_UdpSocket* socket, 365 PLT_SsdpSearchResponseListener* listener, 385 bool m_Repeat; 386 NPT_UdpSocket* m_Socket; 387};Address.java http://dataturbine.googlecode.com/svn/trunk/ | Java | 559 lines
39 * <p> 40 * The <code>TCP</code> class provides the low-level TCP socket handling 41 * methods for using TCP server sockets as the address of an RBNB DataTurbine 49 * handling of the memory-to-memory copies. It is the RAM equivalent of a 50 * standard TCP socket. 51 * <p> 53 * side handling of the memory-to-memory copies. It is the RAM equivalent of a 54 * TCP server socket. 55 * <p> 384 } else if (type.equalsIgnoreCase("TCP:")) { 385 // TCP addresses use the TCP class for TCP socket to server 386 // socket communications.w.c https://bitbucket.org/freebsd/freebsd-head | C | 529 lines
56#include <sys/ioctl.h> 57#include <sys/socket.h> 58#include <sys/tty.h>silcexample-SilcExampleType.html git://pkgs.fedoraproject.org/libsilc | HTML | 223 lines
115 <a href=silcstream.html><img src=box2.gif border=0 alt=>Abstract Stream Interface</a><br /> 116 <a href=silcsocketstream.html><img src=box2.gif border=0 alt=>Socket Stream Interface</a><br /> 117 <a href=silcfdstream.html><img src=box2.gif border=0 alt=>File Descriptor Stream Interface</a><br />TestPackage.java git://github.com/JetBrains/intellij-community.git | Java | 287 lines
64 final TestClassFilter classFilter = computeFilter(data); 65 return new SearchForTestsTask(getConfiguration().getProject(), myServerSocket) { 66 private final Set<Location<?>> myClasses = new LinkedHashSet<>(); 204 205 createServerSocket(javaParameters); 206 return javaParameters;README.md https://gitlab.com/RedDedVolvo/solidgoald | Markdown | 383 lines
1# websocket-driver [](https://travis-ci.org/faye/websocket-driver-node) 2 17* Negotiate and use extensions via the 18 [websocket-extensions](https://github.com/faye/websocket-extensions-node) 19 module 62server.on('upgrade', function(request, socket, body) { 63 if (!websocket.isWebSocket(request)) return; 64 136var net = require('net'), 137 websocket = require('websocket-driver'); 138 287`Sec-WebSocket-Extensions` header. `extension` is any extension compatible with 288the [websocket-extensions](https://github.com/faye/websocket-extensions-node) 289framework. 311 312Sends a text message over the socket. If the socket handshake is not yet 313complete, the message will be queued until it is. Returns `true` if the message_stream_writable.js https://gitlab.com/jeaster12/gulp-nunjucks | JavaScript | 529 lines
101 // of how much we're waiting to get pushed to some underlying 102 // socket or file. 103 this.length = 0;convert_gio.m4 git://pkgs.fedoraproject.org/glibmm24 | m4 | 271 lines
229_CONVERSION(`GSocketAddress*',`Glib::RefPtr<SocketAddress>',`Glib::wrap($3)') 230_CONVERSION(`const Glib::RefPtr<SocketAddress>&',`GSocketAddress*',__CONVERT_CONST_REFPTR_TO_P) 231_CONVERSION(`Glib::RefPtr<SocketAddress>&',`GSocketAddress*',__CONVERT_CONST_REFPTR_TO_P) 231_CONVERSION(`Glib::RefPtr<SocketAddress>&',`GSocketAddress*',__CONVERT_CONST_REFPTR_TO_P) 232_CONVERSION(`GSocketAddressEnumerator*',`Glib::RefPtr<SocketAddressEnumerator>',`Glib::wrap($3)') 233 234#SocketConnectable 235_CONVERSION(`const Glib::RefPtr<SocketConnectable>&',`GSocketConnectable*',__CONVERT_CONST_REFPTR_TO_P) 236 238_CONVERSION(`GSocketConnection*',`Glib::RefPtr<SocketConnection>',`Glib::wrap($3)') 239_CONVERSION(`const Glib::RefPtr<SocketConnection>&',`GSocketConnection*',__CONVERT_CONST_REFPTR_TO_P) 240 241#SocketControlMessage 242_CONVERSION(`GSocketControlMessage*',`Glib::RefPtr<SocketControlMessage>',`Glib::wrap($3)') 243openssl_operation.hpp http://openqwaq.googlecode.com/svn/trunk/ | C++ Header | 517 lines
28#include "asio/write.hpp" 29#include "asio/detail/socket_ops.hpp" 30#include "asio/ssl/detail/openssl_types.hpp" 86 openssl_operation(ssl_primitive_func primitive, 87 Stream& socket, 88 net_buffer& recv_buf, 97 , recv_buf_(recv_buf) 98 , socket_(socket) 99 , ssl_bio_(ssl_bio) 117 openssl_operation(ssl_primitive_func primitive, 118 Stream& socket, 119 net_buffer& recv_buf, 124 , recv_buf_(recv_buf) 125 , socket_(socket) 126 , ssl_bio_(ssl_bio)CreateRouteResponseResult.java https://github.com/aws/aws-sdk-java.git | Java | 389 lines
22 * <p> 23 * Represents the model selection expression of a route response. Supported only for WebSocket APIs. 24 * </p> 53 * <p> 54 * Represents the model selection expression of a route response. Supported only for WebSocket APIs. 55 * </p> 57 * @param modelSelectionExpression 58 * Represents the model selection expression of a route response. Supported only for WebSocket APIs. 59 */ 66 * <p> 67 * Represents the model selection expression of a route response. Supported only for WebSocket APIs. 68 * </p> 69 * 70 * @return Represents the model selection expression of a route response. Supported only for WebSocket APIs. 71 */persistent.py git://github.com/mrjoes/tornadio2.git | Python | 193 lines
29from tornado import stack_context 30from tornado.websocket import WebSocketHandler 31 37 38class TornadioWebSocketHandler(WebSocketHandler): 39 """Websocket protocol handler""" 65 66 # Upgrade header should be present and should be equal to WebSocket 67 if self.request.headers.get("Upgrade", "").lower() != 'websocket': 69 "HTTP/1.1 400 Bad Request\r\n\r\n" 70 "Can \"Upgrade\" only to \"WebSocket\"." 71 )) 190 191class TornadioFlashSocketHandler(TornadioWebSocketHandler): 192 # Transport nameTestPing.java git://pkgs.fedoraproject.org/mod_cluster | Java | 184 lines
30import java.io.IOException; 31import java.net.ServerSocket; 32 138 try { 139 ServerSocket sock = new ServerSocket(8012); 140 } catch (Exception ex) { 140 } catch (Exception ex) { 141 fail("can't create ServerSocket on 8012"); 142 }route-linux.c git://pkgs.fedoraproject.org/nmap | C | 284 lines
12#include <sys/ioctl.h> 13#include <sys/socket.h> 14#include <sys/uio.h> 53 54 if ((r->fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) 55 return (route_close(r)); 56 57 if ((r->nlfd = socket(AF_NETLINK, SOCK_RAW, 58 NETLINK_ROUTE)) < 0)linc-private.h git://pkgs.fedoraproject.org/ORBit2 | C Header | 221 lines
107 LinkWatch *link_watch; 108 SOCKET socket; 109 int event_mask; 151 */ 152#define LINK_TEMP_FAILURE_RETRY_SOCKET(expression, val) \ 153 { int __result; \ 154 do __result = (int) (expression); \ 155 while (__result == SOCKET_ERROR && WSAGetLastError() == WSAEINTR); \ 156 val = __result; } 157 158#define LINK_CLOSE_SOCKET(fd) while (closesocket (fd) == SOCKET_ERROR && WSAGetLastError() == WSAEINTR) 159 161 162/* On Unix socket API calls are no different from normal system calls */ 163coulomb.c git://pkgs.fedoraproject.org/apbs | C | 176 lines
77 if (sock == VNULL) { 78 Vnm_print(2, "Problem opening virtual socket %s!\n", 79 path); 82 if (Vio_accept(sock, 0) < 0) { 83 Vnm_print(2, "Problem accepting virtual socket %s!\n", 84 path);unix-fd.c git://pkgs.fedoraproject.org/glib2 | C | 241 lines
47 GUnixFDList *list, *l2; 48 GSocket *sockets[2]; 49 GSocketAddress *addr; 152 g_assert_no_error (err); 153 g_assert (G_IS_SOCKET (sockets[1])); 154 157 g_assert (G_IS_UNIX_SOCKET_ADDRESS (addr)); 158 g_assert_cmpint (g_unix_socket_address_get_address_type (G_UNIX_SOCKET_ADDRESS (addr)), ==, G_UNIX_SOCKET_ADDRESS_ANONYMOUS); 159 g_assert_cmpint (g_unix_socket_address_get_path_len (G_UNIX_SOCKET_ADDRESS (addr)), ==, 0); 178 ov.size = 1; 179 s = g_socket_send_message (sockets[0], NULL, &ov, 1, 180 (GSocketControlMessage **) &message, 190 iv.size = 1; 191 s = g_socket_receive_message (sockets[1], NULL, &iv, 1, 192 (GSocketControlMessage ***) &mv,CHANGELOG.md https://gitlab.com/jeaster12/fabby | Markdown | 219 lines
51# Chokidar 0.12.3 (13 December 2014) 52* Fix handling of special files such as named pipes and sockets 53MSKeyManagerImpl.java http://umjammer.googlecode.com/svn/trunk/ | Java | 373 lines
13import java.math.BigInteger; 14import java.net.Socket; 15import java.security.GeneralSecurityException; 58 /** 59 * Choose an alias to authenticate the client side of a secure socket given 60 * the public key type and the list of certificate issuer authorities 62 */ 63 public String chooseClientAlias(String[] keyType, Principal[] issuers, Socket socket) { 64 String alias = null; 89 /** 90 * Choose an alias to authenticate the server side of a secure socket given 91 * the public key type and the list of certificate issuer authorities 93 */ 94 public String chooseServerAlias(String keyType, Principal[] issuers, Socket socket) { 95 String alias = null;Relation.scala git://github.com/ornicar/lila.git | Scala | 193 lines
162 ) 163 .add("online" -> env.socket.isOnline(r.user.id)) 164 }))MongoUrlTests.cs git://github.com/mongodb/mongo-csharp-driver.git | C# | 142 lines
58 ServerSelectionTimeout = TimeSpan.FromSeconds(10), 59 SocketTimeout = TimeSpan.FromSeconds(7), 60 Username = "username", 89 "serverSelectionTimeout=10s", 90 "socketTimeout=7s", 91 "waitQueueSize=123", 118 Assert.AreEqual(TimeSpan.FromSeconds(10), url.ServerSelectionTimeout); 119 Assert.AreEqual(TimeSpan.FromSeconds(7), url.SocketTimeout); 120 Assert.AreEqual("username", url.Username);MemoryFileSystem.js git://github.com/DarthFubuMVC/fubumvc.git | JavaScript | 226 lines
57 isFIFO: falseFn, 58 isSocket: falseFn 59 }; 67 isFIFO: falseFn, 68 isSocket: falseFn 69 };AppDelegate.cpp https://gitlab.com/blackbit0/cocos2d-x | C++ | 185 lines
28#include "network/XMLHTTPRequest.h" 29#include "network/jsb_websocket.h" 30#include "network/jsb_socketio.h" 103 sc->addRegisterCallback(MinXmlHttpRequest::_js_register); 104 sc->addRegisterCallback(register_jsb_websocket); 105 sc->addRegisterCallback(register_jsb_socketio);JMembaseTest.java git://github.com/couchbase/CouchbaseMock.git | Java | 391 lines
82 private boolean serverNotReady(int port) { 83 Socket socket = null; 84 try { 84 try { 85 socket = new Socket("localhost", port); 86 return false; 168 169 Socket s = new Socket("localhost", port); 170 OutputStream out = s.getOutputStream(); 229 public void testHarakiriMonitor() throws IOException { 230 ServerSocket server = new ServerSocket(0); 231 HarakiriMonitor m; 325 public void testIllegalMockCommand() throws IOException { 326 ServerSocket server = new ServerSocket(0); 327 instance.startHarakiriMonitor("localhost:" + server.getLocalPort(), false);BaseConnectionPoolTest.java git://github.com/Netflix/astyanax.git | Java | 430 lines
190 pool.addHost( 191 new Host("127.0.0.1", TestHostType.SOCKET_TIMEOUT.ordinal()), 192 true);test_urllib2net.py https://bitbucket.org/arigo/cpython-withatomic/ | Python | 365 lines
7import os 8import socket 9import urllib.error 80 81class CloseSocketTest(unittest.TestCase): 82 84 # calling .close() on urllib2's response objects should close the 85 # underlying socket 86 url = "http://www.python.org/" 135## def test_cnri(self): 136## if socket.gethostname() == 'bitdiddle': 137## localhost = 'bitdiddle.cnri.reston.va.us' 137## localhost = 'bitdiddle.cnri.reston.va.us' 138## elif socket.gethostname() == 'bitdiddle.concentric.net': 139## localhost = 'localhost'email.parser.rst https://bitbucket.org/arigo/cpython-withatomic/ | ReStructuredText | 292 lines
27a stream which might block waiting for more input (e.g. reading an email message 28from a socket). The :class:`FeedParser` can consume and parse the message 29incrementally, and only returns the root object when you close the parser [#]_. 43as would be necessary when reading the text of an email message from a source 44that can block (e.g. a socket). The :class:`FeedParser` can of course be used 45to parse an email message fully contained in a string or a file, but the classicHttpClientService.java http://andrico.googlecode.com/svn/trunk/ | Java | 354 lines
40import org.apache.http.conn.ClientConnectionManager; 41import org.apache.http.conn.scheme.PlainSocketFactory; 42import org.apache.http.conn.scheme.Scheme; 43import org.apache.http.conn.scheme.SchemeRegistry; 44import org.apache.http.conn.scheme.SocketFactory; 45import org.apache.http.entity.mime.MultipartEntity; 186 // by the default operator to look up socket factories. 187 final SocketFactory sf = PlainSocketFactory.getSocketFactory(); 188 supportedSchemes.register(new Scheme("http", sf, 80));fake.php https://code.google.com/p/php-blackops-rcon/ | PHP | 546 lines
30 /** 31 * Socket res 32 * 34 */ 35 protected $socket = NULL; 36 103 { 104 //fclose($this->socket); 105 } 118 /** 119 * Get socket resource 120 * 122 */ 123 public function get_socket() 124 {AbstractClient.java http://loon-simple.googlecode.com/svn/trunk/ | Java | 508 lines
100 sc.init(null, trustAllCerts, null); 101 javax.net.ssl.HttpsURLConnection.setDefaultSSLSocketFactory(sc 102 .getSocketFactory()); 402 port, file, connection.getContentLength(), threads, tmp_file); 403 SocketManager sm = new SocketManager(info); 404 ExternalDownload down = new ExternalDownload(header, sm);all-index-S.html http://as3mp3streamplayer.googlecode.com/svn/trunk/ | HTML | 123 lines
41<td width="20"></td><td> 42 Dispatched when the socket throws a security error 43 </td>taskmanager.c http://garakuta-okiba.googlecode.com/svn/trunk/ | C | 242 lines
70 71void Task_Add(_funcpointer fp, void *socket0, void *socket1, int count) 72{ 83 task_item->fp = fp; 84 task_item->option.socket[0] = socket0; 85 task_item->option.socket[1] = socket1;overload1.html git://github.com/MisterTea/HyperNEAT.git | HTML | 116 lines
26<div class="titlepage"><div><div><h5 class="title"> 27<a name="boost_asio.reference.basic_stream_socket.read_some.overload1"></a><a class="link" href="overload1.html" title="basic_stream_socket::read_some (1 of 2 overloads)">basic_stream_socket::read_some 28 (1 of 2 overloads)</a> 44<a name="boost_asio.reference.basic_stream_socket.read_some.overload1.h0"></a> 45 <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.read_some.overload1.parameters"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_stream_socket.read_some.overload1.parameters">Parameters</a> 46 </h6> 65<a name="boost_asio.reference.basic_stream_socket.read_some.overload1.h2"></a> 66 <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.read_some.overload1.exceptions"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_stream_socket.read_some.overload1.exceptions">Exceptions</a> 67 </h6> 79<a name="boost_asio.reference.basic_stream_socket.read_some.overload1.h3"></a> 80 <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.read_some.overload1.remarks"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_stream_socket.read_some.overload1.remarks">Remarks</a> 81 </h6> 89<a name="boost_asio.reference.basic_stream_socket.read_some.overload1.h4"></a> 90 <span class="phrase"><a name="boost_asio.reference.basic_stream_socket.read_some.overload1.example"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_stream_socket.read_some.overload1.example">Example</a> 91 </h6>stream_protocol.cpp git://github.com/MisterTea/HyperNEAT.git | C++ | 241 lines
83#if defined(BOOST_ASIO_WINDOWS_RUNTIME) 84 Windows::Networking::Sockets::StreamSocket^ native_socket1 = nullptr; 85#else // defined(BOOST_ASIO_WINDOWS_RUNTIME) 92 boost::asio::ip::tcp::socket tcp_socket(ios); 93 sp::socket socket6(std::move(tcp_socket)); 94#endif // defined(BOOST_ASIO_HAS_MOVE) 117#if defined(BOOST_ASIO_WINDOWS_RUNTIME) 118 Windows::Networking::Sockets::StreamSocket^ native_socket2 = nullptr; 119#else // defined(BOOST_ASIO_WINDOWS_RUNTIME) 123#if defined(BOOST_ASIO_WINDOWS_RUNTIME) 124 Windows::Networking::Sockets::StreamSocket^ native_socket3 = nullptr; 125#else // defined(BOOST_ASIO_WINDOWS_RUNTIME) 135 136 sp::socket::native_type native_socket4 = socket1.native(); 137 (void)native_socket4;libFtp.tcl http://nxscripts.googlecode.com/svn/ | TCL | 500 lines
91 # ftp(queue) - Event queue (FIFO). 92 # ftp(sock) - Socket channel. 93 # ftp(status) - Connection status (0=disconnected, 1=connecting, 2=connected). 157 158 # Asynchronous sockets in Tcl are created immediately but may not be 159 # connected yet. The writable channel event callback is executed when 159 # connected yet. The writable channel event callback is executed when 160 # the socket is connected or if the connection failed. 161 set ftp(sock) [socket -async $ftp(host) $ftp(port)] 276 277 # Send the QUIT command and terminate the socket. 278 catch {puts $ftp(sock) "QUIT"}select.c git://pkgs.fedoraproject.org/wget | C | 494 lines
84static BOOL 85IsSocketHandle (HANDLE h) 86{ 94 ev.lNetworkEvents = 0xDEADBEEF; 95 WSAEnumNetworkEvents ((SOCKET) h, NULL, &ev); 96 return ev.lNetworkEvents != 0xDEADBEEF; 325 326 /* Classify handles. Create fd sets for sockets, poll the others. */ 327 for (i = 0; i < nfds; i++) 338 339 if (IsSocketHandle (h)) 340 { 342 343 /* See above; socket handles are mapped onto select, but we 344 need to map descriptors to handles. */cli.c git://pkgs.fedoraproject.org/openvas-client | C | 637 lines
28#include <openvas/plugutils.h> /* for addslashes */ 29#include <openvas/network.h> /* for openvas_get_socket_from_connection, 30 close_stream_connection */ 32#include <openvas/misc/plugutils.h> /* for addslashes */ 33#include <openvas/misc/network.h> /* for openvas_get_socket_from_connection, 34 close_stream_connection */ 68 struct timeval tv = {2,0}; 69 int fd = openvas_get_socket_from_connection(soc); 70 110 */ 111 if(network_gets(Context->socket, buf, sizeof(buf) - 1) < 0 || buf[0] == '\0') 112 { 112 { 113 if(!is_server_present(Context->socket)) 114 {xfce4-dict-plugin.c git://pkgs.fedoraproject.org/xfce4-dict | C | 475 lines
31#include <sys/types.h> 32#include <sys/socket.h> 33#include <sys/stat.h>Runeaugments.cs https://adaptuo.svn.codeplex.com/svn | C# | 518 lines
12 13 public class TyrRune : BaseSocketAugmentation 14 { 90 91 public class AhmRune : BaseSocketAugmentation 92 { 163 164 public class MorRune : BaseSocketAugmentation 165 { 236 237 public class MefRune : BaseSocketAugmentation 238 { 309 310 public class YlmRune : BaseSocketAugmentation 311 {DispatchIoHandler.java git://github.com/liferay/liferay-portal.git | Java | 231 lines
105 public void sessionClosed(IoSession ioSession) { 106 LdapHandlerThreadLocal.clearSocketAddress(); 107 } 119 try { 120 LdapHandlerThreadLocal.setSocketAddress( 121 ioSession.getRemoteAddress());async_accept.html git://github.com/MisterTea/HyperNEAT.git | HTML | 66 lines
7<link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> 8<link rel="up" href="../basic_socket_acceptor.html" title="basic_socket_acceptor"> 9<link rel="prev" href="assign/overload2.html" title="basic_socket_acceptor::assign (2 of 2 overloads)"> 26<div class="titlepage"><div><div><h4 class="title"> 27<a name="boost_asio.reference.basic_socket_acceptor.async_accept"></a><a class="link" href="async_accept.html" title="basic_socket_acceptor::async_accept">basic_socket_acceptor::async_accept</a> 28</h4></div></div></div> 34 <span class="keyword">typename</span> <a class="link" href="../Protocol.html" title="Protocol requirements">Protocol1</a><span class="special">,</span> 35 <span class="keyword">typename</span> <a class="link" href="../SocketService.html" title="Socket service requirements">SocketService</a><span class="special">,</span> 36 <span class="keyword">typename</span> <a class="link" href="../AcceptHandler.html" title="Accept handler requirements">AcceptHandler</a><span class="special">></span> 43<span class="keyword">template</span><span class="special"><</span> 44 <span class="keyword">typename</span> <a class="link" href="../SocketService.html" title="Socket service requirements">SocketService</a><span class="special">,</span> 45 <span class="keyword">typename</span> <a class="link" href="../AcceptHandler.html" title="Accept handler requirements">AcceptHandler</a><span class="special">></span> 46<a class="link" href="../asynchronous_operations.html#boost_asio.reference.asynchronous_operations.return_type_of_an_initiating_function"><span class="emphasis"><em>void-or-deduced</em></span></a> <a class="link" href="async_accept/overload2.html" title="basic_socket_acceptor::async_accept (2 of 2 overloads)">async_accept</a><span class="special">(</span> 47 <span class="identifier">basic_socket</span><span class="special"><</span> <span class="identifier">protocol_type</span><span class="special">,</span> <span class="identifier">SocketService</span> <span class="special">></span> <span class="special">&</span> <span class="identifier">peer</span><span class="special">,</span> 48 <span class="identifier">endpoint_type</span> <span class="special">&</span> <span class="identifier">peer_endpoint</span><span class="special">,</span>GraphiteReporter.java git://github.com/springside/springside4.git | Java | 219 lines
11import java.io.Writer; 12import java.net.InetSocketAddress; 13import java.net.Socket; 48 private InetSocketAddress address; 49 private SocketFactory socketFactory; 50 private Socket socket; 55 56 public GraphiteReporter(InetSocketAddress address) { 57 this(address, DEFAULT_PREFIX); 62 this.address = address; 63 this.socketFactory = SocketFactory.getDefault(); 64 } 137 138 this.socket = socketFactory.createSocket(address.getAddress(), address.getPort()); 139 this.writer = new BufferedWriter(new OutputStreamWriter(socket.getOutputStream(), UTF_8));name_table.h git://github.com/torvalds/linux.git | C Header | 152 lines
57 * @scope: scope of publication, TIPC_NODE_SCOPE or TIPC_CLUSTER_SCOPE 58 * @node: network address of publishing socket's node 59 * @port: publishing port 67 * @binding_sock: all publications from the same socket which bound this one 68 * Used by socket to withdraw publications when socket is unbound/released 69 * @local_publ: list of identical publications made from this nodefd_unix.go git://github.com/axw/llgo.git | Go | 506 lines
85 case syscall.EINVAL: 86 // On Solaris we can see EINVAL if the socket has 87 // already been accepted and closed by the server. 88 // Treat this as a successful connection--writes to 89 // the socket will see EOF. For details and a test 90 // case in C see https://golang.org/issue/6828. 106 // Performing multiple connect system calls on a 107 // non-blocking socket under Unix variants does not 108 // necessarily result in earlier errors being 109 // returned. Instead, once runtime-integrated network 110 // poller tells us that the socket is ready, get the 111 // SO_ERROR socket option to see if the connection 116 } 117 nerr, err := getsockoptIntFunc(fd.sysfd, syscall.SOL_SOCKET, syscall.SO_ERROR) 118 if err != nil {TransportLayerManager.cs https://NSsh.svn.codeplex.com/svn | C# | 411 lines
21using System.Net; 22using System.Net.Sockets; 23using System.Text; 106 107 _clientEndPoint = ClientSocket.RemoteEndPoint; 108 122 123 _clientEndPoint = ClientSocket.RemoteEndPoint; 124 174 { 175 ClientSocket.Shutdown(SocketShutdown.Both); 176 ClientSocket.Close(); 307 308 public Socket ClientSocket { get; set; } 309IOSession.java https://github.com/apache/httpcore.git | Java | 241 lines
29 30import java.net.SocketAddress; 31import java.nio.channels.ByteChannel; 34import org.apache.hc.core5.annotation.Internal; 35import org.apache.hc.core5.http.SocketModalCloseable; 36import org.apache.hc.core5.util.Identifiable; 55@Internal 56public interface IOSession extends ByteChannel, SocketModalCloseable, Identifiable { 57 122 * 123 * @return socket address. 124 */ 124 */ 125 SocketAddress getRemoteAddress(); 126SocketImpl.h https://gitlab.com/cocoroac/walkingartists | C Header | 469 lines
49 50 virtual SocketImpl* acceptConnection(SocketAddress& clientAddr); 51 /// Get the next completed connection from the 370 SocketImpl(poco_socket_t sockfd); 371 /// Creates a SocketImpl using the given native socket. 372 401 void reset(poco_socket_t fd = POCO_INVALID_SOCKET); 402 /// Allows subclasses to set the socket manually, iff no valid socket is set yet. 403 420 SocketImpl(const SocketImpl&); 421 SocketImpl& operator = (const SocketImpl&); 422 437// 438inline poco_socket_t SocketImpl::sockfd() const 439{server.rb git://github.com/maca/scruby.git | Ruby | 285 lines
193 194 def socket 195 osc_client.instance_variable_get(:@socket)CipherTest.java git://github.com/gaffo/scumd.git | Java | 185 lines
22import java.io.OutputStream; 23import java.net.ServerSocket; 24import java.util.Arrays; 116 protected void setUp(NamedFactory<org.apache.sshd.common.Cipher> cipher) throws Exception { 117 ServerSocket s = new ServerSocket(0); 118 port = s.getLocalPort();beos.c git://github.com/zpao/spidernode.git | C | 264 lines
44#include <sys/types.h> 45#include <sys/socket.h> 46#include <sys/time.h>