Changeset 762b48a in mainline
- Timestamp:
- 2011-11-23T19:14:49Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 04cd242
- Parents:
- 1812a0d
- Location:
- uspace/srv/net/tl/tcp
- Files:
-
- 6 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/tl/tcp/Makefile
r1812a0d r762b48a 34 34 SOURCES = \ 35 35 conn.c \ 36 header.c \37 36 iqueue.c \ 38 37 ncsim.c \ 38 pdu.c \ 39 39 rqueue.c \ 40 40 segment.c \ 41 41 seq_no.c \ 42 state.c \43 42 tcp.c \ 44 43 test.c \ 45 tqueue.c 44 tqueue.c \ 45 ucall.c 46 46 47 47 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/net/tl/tcp/conn.c
r1812a0d r762b48a 45 45 #include "segment.h" 46 46 #include "seq_no.h" 47 #include "state.h"48 47 #include "tcp_type.h" 49 48 #include "tqueue.h" 49 #include "ucall.h" 50 50 51 51 #define RCV_BUF_SIZE 2/*4096*/ -
uspace/srv/net/tl/tcp/pdu.c
r1812a0d r762b48a 40 40 #include <mem.h> 41 41 #include <stdlib.h> 42 #include " header.h"42 #include "pdu.h" 43 43 #include "segment.h" 44 44 #include "seq_no.h" -
uspace/srv/net/tl/tcp/pdu.h
r1812a0d r762b48a 30 30 * @{ 31 31 */ 32 /** @file TCP header encoding and decoding32 /** @file TCP PDU (encoded Protocol Data Unit) handling 33 33 */ 34 34 35 #ifndef HEADER_H36 #define HEADER_H35 #ifndef PDU_H 36 #define PDU_H 37 37 38 38 #include <sys/types.h> -
uspace/srv/net/tl/tcp/rqueue.c
r1812a0d r762b48a 41 41 #include <thread.h> 42 42 #include "conn.h" 43 #include " header.h"43 #include "pdu.h" 44 44 #include "rqueue.h" 45 45 #include "segment.h" 46 #include "state.h"47 46 #include "tcp_type.h" 47 #include "ucall.h" 48 48 49 49 /** Transcode bounced segments. -
uspace/srv/net/tl/tcp/tcp.c
r1812a0d r762b48a 52 52 #include <packet_remote.h> 53 53 54 #include "header.h"55 54 #include "ncsim.h" 55 #include "pdu.h" 56 56 #include "rqueue.h" 57 57 #include "std.h" -
uspace/srv/net/tl/tcp/test.c
r1812a0d r762b48a 40 40 #include <thread.h> 41 41 #include <str.h> 42 #include "state.h"43 42 #include "tcp_type.h" 43 #include "ucall.h" 44 44 45 45 #include "test.h" -
uspace/srv/net/tl/tcp/tqueue.c
r1812a0d r762b48a 44 44 #include <stdlib.h> 45 45 #include "conn.h" 46 #include "header.h"47 46 #include "ncsim.h" 47 #include "pdu.h" 48 48 #include "rqueue.h" 49 49 #include "segment.h" -
uspace/srv/net/tl/tcp/ucall.c
r1812a0d r762b48a 40 40 #include <mem.h> 41 41 #include "conn.h" 42 #include "state.h"43 42 #include "tcp_type.h" 44 43 #include "tqueue.h" 44 #include "ucall.h" 45 45 46 46 /* -
uspace/srv/net/tl/tcp/ucall.h
r1812a0d r762b48a 30 30 * @{ 31 31 */ 32 /** @file TCP entry points (close to those defined in the RFC)32 /** @file TCP user calls (close to those defined in the RFC) 33 33 */ 34 34 35 #ifndef STATE_H36 #define STATE_H35 #ifndef UCALL_H 36 #define UCALL_H 37 37 38 38 #include <sys/types.h>
Note:
See TracChangeset
for help on using the changeset viewer.