📄 ethernetstop.c
字号:
/* * Functions to stop the ethernet system. * * (C) 2002 Compendium Technologies, Inc. * (C) 2002 Softools, Inc. * All rights reserved. * * This software is the proprietary information of Compendium Technologies, Inc. * and Softools, Inc. Use is subject to license terms. */#include "rabbitlwip.h"extern unsigned char _ethInitialized;/* * */void ethernetStop(void){ if (_ethInitialized) { // TODO: Need a substitute for this for lwIP // tcp_shutdown(); _ethInitialized = 0; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -