Start all protocols. The Protocol#start() method is called in each protocol, from bottom to top . Each protocol can perform some initialization, e.g. create a multicast socket
()
| 912 | * <em>from bottom to top</em>. Each protocol can perform some initialization, e.g. create a multicast socket |
| 913 | */ |
| 914 | public void startStack() throws Exception { |
| 915 | if(!stopped) return; |
| 916 | stopped=false; |
| 917 | List<Protocol> protocols=getProtocols(); |
| 918 | Collections.reverse(protocols); |
| 919 | for(Protocol prot: protocols) |
| 920 | prot.start(); |
| 921 | TP transport=getTransport(); |
| 922 | transport.registerProbeHandler(props_handler); |
| 923 | } |
| 924 | |
| 925 | |
| 926 |
nothing calls this directly
no test coverage detected