-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtcp_stack_init.c
41 lines (38 loc) · 1.51 KB
/
tcp_stack_init.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* =====================================================================================
*
* Filename: tcp_stack_init.c
*
* Description: This file implements the routine to initialize the TCP/IP stacl
*
* Version: 1.0
* Created: 01/11/2020 11:05:13 AM
* Revision: none
* Compiler: gcc
*
* Author: Er. Abhishek Sagar, Juniper Networks (https://csepracticals.wixsite.com/csepracticals), sachinites@gmail.com
* Company: Juniper Networks
*
* This file is part of the NetworkGraph distribution (https://github.com/sachinites)
* Copyright (c) 2019 Abhishek Sagar.
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* visit website : https://csepracticals.wixsite.com/csepracticals for more courses and projects
*
* =====================================================================================
*/
extern void init_spf_algo();
extern void init_ddcp();
extern void init_nbrship_mgmt();
void
init_tcp_ip_stack(){
init_spf_algo();
init_ddcp();
init_nbrship_mgmt();
}