Changeset 762b48a in mainline


Ignore:
Timestamp:
2011-11-23T19:14:49Z (12 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
04cd242
Parents:
1812a0d
Message:

Rename some source files as their meaning has shifted.

Location:
uspace/srv/net/tl/tcp
Files:
6 edited
4 moved

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/tl/tcp/Makefile

    r1812a0d r762b48a  
    3434SOURCES = \
    3535        conn.c \
    36         header.c \
    3736        iqueue.c \
    3837        ncsim.c \
     38        pdu.c \
    3939        rqueue.c \
    4040        segment.c \
    4141        seq_no.c \
    42         state.c \
    4342        tcp.c \
    4443        test.c \
    45         tqueue.c
     44        tqueue.c \
     45        ucall.c
    4646
    4747include $(USPACE_PREFIX)/Makefile.common
  • uspace/srv/net/tl/tcp/conn.c

    r1812a0d r762b48a  
    4545#include "segment.h"
    4646#include "seq_no.h"
    47 #include "state.h"
    4847#include "tcp_type.h"
    4948#include "tqueue.h"
     49#include "ucall.h"
    5050
    5151#define RCV_BUF_SIZE 2/*4096*/
  • uspace/srv/net/tl/tcp/pdu.c

    r1812a0d r762b48a  
    4040#include <mem.h>
    4141#include <stdlib.h>
    42 #include "header.h"
     42#include "pdu.h"
    4343#include "segment.h"
    4444#include "seq_no.h"
  • uspace/srv/net/tl/tcp/pdu.h

    r1812a0d r762b48a  
    3030 * @{
    3131 */
    32 /** @file TCP header encoding and decoding
     32/** @file TCP PDU (encoded Protocol Data Unit) handling
    3333 */
    3434
    35 #ifndef HEADER_H
    36 #define HEADER_H
     35#ifndef PDU_H
     36#define PDU_H
    3737
    3838#include <sys/types.h>
  • uspace/srv/net/tl/tcp/rqueue.c

    r1812a0d r762b48a  
    4141#include <thread.h>
    4242#include "conn.h"
    43 #include "header.h"
     43#include "pdu.h"
    4444#include "rqueue.h"
    4545#include "segment.h"
    46 #include "state.h"
    4746#include "tcp_type.h"
     47#include "ucall.h"
    4848
    4949/** Transcode bounced segments.
  • uspace/srv/net/tl/tcp/tcp.c

    r1812a0d r762b48a  
    5252#include <packet_remote.h>
    5353
    54 #include "header.h"
    5554#include "ncsim.h"
     55#include "pdu.h"
    5656#include "rqueue.h"
    5757#include "std.h"
  • uspace/srv/net/tl/tcp/test.c

    r1812a0d r762b48a  
    4040#include <thread.h>
    4141#include <str.h>
    42 #include "state.h"
    4342#include "tcp_type.h"
     43#include "ucall.h"
    4444
    4545#include "test.h"
  • uspace/srv/net/tl/tcp/tqueue.c

    r1812a0d r762b48a  
    4444#include <stdlib.h>
    4545#include "conn.h"
    46 #include "header.h"
    4746#include "ncsim.h"
     47#include "pdu.h"
    4848#include "rqueue.h"
    4949#include "segment.h"
  • uspace/srv/net/tl/tcp/ucall.c

    r1812a0d r762b48a  
    4040#include <mem.h>
    4141#include "conn.h"
    42 #include "state.h"
    4342#include "tcp_type.h"
    4443#include "tqueue.h"
     44#include "ucall.h"
    4545
    4646/*
  • uspace/srv/net/tl/tcp/ucall.h

    r1812a0d r762b48a  
    3030 * @{
    3131 */
    32 /** @file TCP entry points (close to those defined in the RFC)
     32/** @file TCP user calls (close to those defined in the RFC)
    3333 */
    3434
    35 #ifndef STATE_H
    36 #define STATE_H
     35#ifndef UCALL_H
     36#define UCALL_H
    3737
    3838#include <sys/types.h>
Note: See TracChangeset for help on using the changeset viewer.