Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update packages #8

Merged
merged 2 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update repo to work again.
  • Loading branch information
rkimball committed Mar 1, 2024
commit f658ce5825106d03e463cedcbec1f1062c03acab
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 2.8)
cmake_minimum_required (VERSION 3.0)
set (CMAKE_DISABLE_SOURCE_CHANGES ON)
set (CMAKE_DISABLE_IN_SOURCE_BUILD ON)

Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ DHCP got address 192.168.1.23
```
so you will point your browser at http://192.168.1.23 in this example
### Linux
Linux build has been tested on Ubuntu 14.04 and 16.04. It works fine in a Windows Hyper-v VM
install of Ubuntu. tinytcp does not support in-tree building.
Linux build has been tested on Ubuntu 22.04. It works fine in a Windows Hyper-v VM
install of Ubuntu.

```
mkdir myproject
Expand Down Expand Up @@ -56,6 +56,9 @@ so you will point your browser at http://192.168.1.23 in this example
VM's network adapter. To do this go to the VM's settings page, expand the *Network Adapter* node in
the left panel, and select *Advanced Features*. Now, in the panel on the right check the
*Enable MAC address spoofing* checkbox and select *Apply* to apply the setting.

![hyper-v setting](images/mac_spoofing.png)

## Usage
The protocol stack has three main functions required

Expand Down
Binary file added images/mac_spoofing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include(ExternalProject)
ExternalProject_Add(
gtest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG release-1.10.0
GIT_TAG v1.14.x
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/gtest
# Disable install step
INSTALL_COMMAND ""
Expand Down
2 changes: 1 addition & 1 deletion test_app/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project(test_app)
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.0)
set( SOURCE
TestApp.cpp
)
Expand Down