source: bootcd/isolinux/syslinux-6.03/core/fs/pxe/tcp.c

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 818 bytes
Line 
1/* ----------------------------------------------------------------------- *
2 *
3 *   Copyright 2011 Intel Corporation; author: H. Peter Anvin
4 *
5 *   This program is free software; you can redistribute it and/or modify
6 *   it under the terms of the GNU General Public License as published by
7 *   the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
8 *   Boston MA 02110-1301, USA; either version 2 of the License, or
9 *   (at your option) any later version; incorporated herein by reference.
10 *
11 * ----------------------------------------------------------------------- */
12
13/*
14 * tcp.c
15 *
16 * Common operations for TCP-based network protocols
17 */
18
19#include "pxe.h"
20#include "net.h"
21
22const struct pxe_conn_ops tcp_conn_ops = {
23    .fill_buffer        = core_tcp_fill_buffer,
24    .close              = core_tcp_close_file,
25};
Note: See TracBrowser for help on using the repository browser.