Home | History | Annotate | Download | only in pxe
      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 
     22 const struct pxe_conn_ops tcp_conn_ops = {
     23     .fill_buffer	= core_tcp_fill_buffer,
     24     .close		= core_tcp_close_file,
     25 };
     26