Slide 24
Slide 24 text
24
Auth Serverの設計
type AuthRequest struct {
Method string `json:"method"`
Protocol string `json:"protocol"`
User string `json:"user"`
Pass string `json:"password"`
Salt string `json:"salt"`
LoginAttempt int `json:"login_attempt"`
ClientIP net.IP `json:"clinet_ip"`
ClientHost string `json:"client_host"`
}
...
var authReq AuthRequest
if err := json.Unmarshal(jsonBytes, &authReq); err != nil {
// Τϥʔॲཧ
}
普通はこんな感じで書く?