Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions
stream.c File Reference
#include <linux/module.h>
#include <linux/net.h>
#include <linux/signal.h>
#include <linux/tcp.h>
#include <linux/wait.h>
#include <net/sock.h>

Go to the source code of this file.

Functions

void sk_stream_write_space (struct sock *sk)
 
 EXPORT_SYMBOL (sk_stream_write_space)
 
int sk_stream_wait_connect (struct sock *sk, long *timeo_p)
 
 EXPORT_SYMBOL (sk_stream_wait_connect)
 
void sk_stream_wait_close (struct sock *sk, long timeout)
 
 EXPORT_SYMBOL (sk_stream_wait_close)
 
int sk_stream_wait_memory (struct sock *sk, long *timeo_p)
 
 EXPORT_SYMBOL (sk_stream_wait_memory)
 
int sk_stream_error (struct sock *sk, int flags, int err)
 
 EXPORT_SYMBOL (sk_stream_error)
 
void sk_stream_kill_queues (struct sock *sk)
 
 EXPORT_SYMBOL (sk_stream_kill_queues)
 

Function Documentation

EXPORT_SYMBOL ( sk_stream_write_space  )
EXPORT_SYMBOL ( sk_stream_wait_connect  )
EXPORT_SYMBOL ( sk_stream_wait_close  )
EXPORT_SYMBOL ( sk_stream_wait_memory  )
EXPORT_SYMBOL ( sk_stream_error  )
EXPORT_SYMBOL ( sk_stream_kill_queues  )
int sk_stream_error ( struct sock sk,
int  flags,
int  err 
)

Definition at line 176 of file stream.c.

void sk_stream_kill_queues ( struct sock sk)

Definition at line 186 of file stream.c.

void sk_stream_wait_close ( struct sock sk,
long  timeout 
)

Definition at line 95 of file stream.c.

int sk_stream_wait_connect ( struct sock sk,
long timeo_p 
)

sk_stream_wait_connect - Wait for a socket to get into the connected state : sock to wait on : for how long to wait

Must be called with the socket locked.

Definition at line 55 of file stream.c.

int sk_stream_wait_memory ( struct sock sk,
long timeo_p 
)

sk_stream_wait_memory - Wait for more memory for a socket : socket to wait for memory : for how long

Definition at line 117 of file stream.c.

void sk_stream_write_space ( struct sock sk)

sk_stream_write_space - stream socket write_space callback. : socket

FIXME: write proper description

Definition at line 28 of file stream.c.