[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[dhcp] branch master updated (30d7a60 -> d6b11dd)
From: |
Rohan Prinja |
Subject: |
[dhcp] branch master updated (30d7a60 -> d6b11dd) |
Date: |
Sat, 06 Jun 2015 18:16:54 +0000 |
wenderen pushed a change to branch master
in repository dhcp.
from 30d7a60 +gitignore
new e733ce5 dhcp: arp hardware address identifiers
new 234b926 dhcp: tell git to ignore log files
new 03103fe dhcp: add unused and private-use options, fix some other
mistakes
new c616589 dhcp: change module names to reflect directory structure
new ef80d72 dhcp: add in deprecated time-offset option
new d96db6c dhcp: packet objects, untested
new 55f02e3 dhcp: code to read info about network interfaces, untested
new 3907160 dhcp: code for sending packets, incomplete, untested
new 41bba08 dhcp: dhcp configuration objects
new c24603c dhcp: source for .so, used by some now-redundant
functions in interfaces.scm
new 34690bc dhcp: tests for the (dhcp *) modules, incomplete
new d6b11dd dhcp: client code, incomplete
The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.gitignore | 1 +
arp/identifiers.scm | 87 ++++++++++++++
dhcp/client.scm | 56 +++++++++
dhcp/dhcp.scm | 159 +++++++++++++++++++++++++
dhcp/interfaces.scm | 248 ++++++++++++++++++++++++++++++++++++++
dhcp/messages.scm | 272 ++++++++++++++++++++++++++++++++++++++++++
dhcp/options/base.scm | 46 +++++++
dhcp/options/names.scm | 289 +++++++++++++++++++++++++++++++++++++++++++++
dhcp/send.scm | 36 ++++++
lib/interfaces.c | 54 +++++++++
tests/arp-identifiers.scm | 36 ++++++
tests/dhcp-dhcp.scm | 32 +++++
tests/dhcp-interfaces.scm | 50 ++++++++
tests/dhcp-messages.scm | 45 +++++++
tests/dhcp-send.scm | 53 ++++++++
15 files changed, 1464 insertions(+), 0 deletions(-)
create mode 100644 arp/identifiers.scm
create mode 100644 dhcp/client.scm
create mode 100644 dhcp/dhcp.scm
create mode 100644 dhcp/interfaces.scm
create mode 100644 dhcp/messages.scm
create mode 100644 dhcp/options/base.scm
create mode 100644 dhcp/options/names.scm
create mode 100644 dhcp/send.scm
create mode 100644 lib/interfaces.c
create mode 100644 tests/arp-identifiers.scm
create mode 100644 tests/dhcp-dhcp.scm
create mode 100644 tests/dhcp-interfaces.scm
create mode 100644 tests/dhcp-messages.scm
create mode 100644 tests/dhcp-send.scm
- [dhcp] branch master updated (30d7a60 -> d6b11dd),
Rohan Prinja <=
- [dhcp] 02/12: dhcp: tell git to ignore log files, Rohan Prinja, 2015/06/06
- [dhcp] 05/12: dhcp: add in deprecated time-offset option, Rohan Prinja, 2015/06/06
- [dhcp] 01/12: dhcp: arp hardware address identifiers, Rohan Prinja, 2015/06/06
- [dhcp] 04/12: dhcp: change module names to reflect directory structure, Rohan Prinja, 2015/06/06
- [dhcp] 08/12: dhcp: code for sending packets, incomplete, untested, Rohan Prinja, 2015/06/06
- [dhcp] 10/12: dhcp: source for .so, used by some now-redundant functions in interfaces.scm, Rohan Prinja, 2015/06/06
- [dhcp] 06/12: dhcp: packet objects, untested, Rohan Prinja, 2015/06/06
- [dhcp] 03/12: dhcp: add unused and private-use options, fix some other mistakes, Rohan Prinja, 2015/06/06
- [dhcp] 09/12: dhcp: dhcp configuration objects, Rohan Prinja, 2015/06/06
- [dhcp] 07/12: dhcp: code to read info about network interfaces, untested, Rohan Prinja, 2015/06/06