update INSTALL file

This commit is contained in:
Sukchan Lee 2017-04-18 21:30:21 +09:00
parent 05f74087e0
commit 383f283c31
3 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ Build from Git
make check
make install
sudo ip tuntap add name pgwtun mode tun
sudo ./scripts/netconfig.sh
sudo ./scripts/linux_netconfig.sh
./cellwired

View File

@ -38,7 +38,7 @@ void pgw_state_operational(fsm_t *s, event_t *e)
rv = pgw_path_open();
if (rv != CORE_OK)
{
d_error("Can't establish S11 path");
d_error("Can't establish PGW path");
break;
}
break;
@ -48,7 +48,7 @@ void pgw_state_operational(fsm_t *s, event_t *e)
rv = pgw_path_close();
if (rv != CORE_OK)
{
d_error("Can't close S11 path");
d_error("Can't close PGW path");
break;
}
break;

View File

@ -37,7 +37,7 @@ void sgw_state_operational(fsm_t *s, event_t *e)
rv = sgw_path_open();
if (rv != CORE_OK)
{
d_error("Can't establish S11 path");
d_error("Can't establish SGW path");
break;
}
break;
@ -47,7 +47,7 @@ void sgw_state_operational(fsm_t *s, event_t *e)
rv = sgw_path_close();
if (rv != CORE_OK)
{
d_error("Can't close S11 path");
d_error("Can't close SGW path");
break;
}
break;