Changeset 8ebc5b8a in mainline
- Timestamp:
- 2017-08-27T11:59:59Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 868b0e9
- Parents:
- b33d140
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
rb33d140 r8ebc5b8a 237 237 $(USPACE_PATH)/lib/posix/test-libposix \ 238 238 $(USPACE_PATH)/lib/uri/test-liburi \ 239 $(USPACE_PATH)/app/bdsh/test-bdsh 239 $(USPACE_PATH)/app/bdsh/test-bdsh \ 240 $(USPACE_PATH)/srv/net/tcp/test-tcp 240 241 241 242 RD_DATA_ESSENTIAL = \ -
uspace/srv/net/tcp/Makefile
rb33d140 r8ebc5b8a 51 51 ucall.c 52 52 53 TEST_SOURCES = \ 54 pdu.c \ 55 segment.c \ 56 seq_no.c \ 57 test/main.c \ 58 test/pdu.c 59 53 60 include $(USPACE_PREFIX)/Makefile.common -
uspace/srv/net/tcp/segment.c
rb33d140 r8ebc5b8a 43 43 44 44 /** Alocate new segment structure. */ 45 tcp_segment_t *tcp_segment_new(void)45 static tcp_segment_t *tcp_segment_new(void) 46 46 { 47 47 return calloc(1, sizeof(tcp_segment_t)); -
uspace/srv/net/tcp/segment.h
rb33d140 r8ebc5b8a 40 40 #include "tcp_type.h" 41 41 42 extern tcp_segment_t *tcp_segment_new(void);43 42 extern void tcp_segment_delete(tcp_segment_t *); 44 43 extern tcp_segment_t *tcp_segment_dup(tcp_segment_t *);
Note:
See TracChangeset
for help on using the changeset viewer.