summaryrefslogtreecommitdiff
path: root/corking.h
blob: fb4483cbea5fe9faa70276523a3797a1bcfa3d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CORKING_H
#define CORKING_H

#include <stdbool.h>

extern void set_tcp_cork(int fd);
extern void set_tcp_uncork(int fd);
extern void set_udp_cork(int fd);
extern void set_udp_uncork(int fd);
extern void set_sock_cork(int fd, bool is_udp);
extern void set_sock_uncork(int fd, bool is_udp);

#endif /* CORKING_H */
/tr>
authorLinus Torvalds <torvalds@linux-foundation.org>2016-09-23 16:34:24 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2016-09-23 16:34:24 -0700
commitd0c1d15f5ed7f028d2c284b7fed7e73575d9c24d (patch)
tree95668ae49d855b243ab5f31f36eb1d12652373ef /Documentation
parent4ee69866258620b105d06ae07da3bbe9fdb1699a (diff)
parent4af2ff91ec3f42b538a65cf12df5f9faf6aaa914 (diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
Pull input updates from Dmitry Torokhov: "Just a fix up for the firmware handling to the Silead driver (which is a new driver in this release)" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: Input: silead_gsl1680 - use "silead/" prefix for firmware loading Input: silead_gsl1680 - document firmware-name, fix implementation
Diffstat (limited to 'Documentation')